Skip to content

Commit

Permalink
upping version number
Browse files Browse the repository at this point in the history
  • Loading branch information
artwells committed Feb 6, 2015
1 parent d79d331 commit bc65b14
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
Package.describe({
summary: "Automatically add visitor as anonymous guest with userId",
version: "0.1.3",
name: "artwells:accounts-guest",
git: "https://github.com/artwells/meteor-accounts-guest.git"
summary: "Automatically add visitor as anonymous guest with userId",
version: "0.1.5",
name: "artwells:accounts-guest",
git: "https://github.com/artwells/meteor-accounts-guest.git"
});

Package.onUse(function (api) {
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password','deps', 'blaze@2.0.4'], 'client');
api.use(['accounts-base'], 'server');
api.add_files('accounts-guest.js', ['client','server']);
api.export('AccountsGuest');
api.add_files('accounts-guest-server.js', 'server');
api.add_files('accounts-guest-client.js', 'client');
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password','deps', 'blaze@2.0.4'], 'client');
api.use(['accounts-base'], 'server');
api.add_files('accounts-guest.js', ['client','server']);
api.export('AccountsGuest');
api.add_files('accounts-guest-server.js', 'server');
api.add_files('accounts-guest-client.js', 'client');

});

Package.onTest(function (api) {
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password', 'tinytest','deps'], ['client','server']);
api.add_files('accounts-guest.js', ['client','server']);
api.add_files('accounts-guest-server.js', 'server');
api.add_files('accounts-guest-client.js', 'client');
api.add_files('accounts-guest-server-tests.js', 'server');
api.add_files('accounts-guest-client-tests.js', 'client');
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password', 'tinytest','deps'], ['client','server']);
api.add_files('accounts-guest.js', ['client','server']);
api.add_files('accounts-guest-server.js', 'server');
api.add_files('accounts-guest-client.js', 'client');
api.add_files('accounts-guest-server-tests.js', 'server');
api.add_files('accounts-guest-client-tests.js', 'client');
});

0 comments on commit bc65b14

Please sign in to comment.