Skip to content

Commit

Permalink
Merge pull request #3 from StorytellerCZ/patch-1
Browse files Browse the repository at this point in the history
Fix api.add_files => api.addFiles
  • Loading branch information
nooitaf committed Nov 16, 2021
2 parents 477fc9d + 96201fe commit c9f3a48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: "Add colors to strings using Colors.js",
version: "1.1.2_1",
version: "1.2.0",
name: "nooitaf:colors",
git: "https://github.com/nooitaf/meteor-colors.git"
});
Expand All @@ -10,7 +10,7 @@ Npm.depends({
});

Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.versionsFrom('METEOR@1.2');
api.export('colors', 'server');
api.add_files('export.js', 'server');
api.addFiles('export.js', 'server');
});

0 comments on commit c9f3a48

Please sign in to comment.