From dc91fee73feac0ee72218a44c2cdf0df1b1c195e Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Fri, 21 Oct 2016 12:21:55 -0400 Subject: [PATCH] Remove version constraints from packages/accounts-base/package.js. Version constraints are unnecessary when publishing a release, and tend to complicate things when the constraints are out of date with packages that are updated by the release. --- packages/accounts-base/package.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index e162820f3e..d6c88e221b 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -4,36 +4,36 @@ Package.describe({ }); Package.onUse(function (api) { - api.use('underscore@1.0.9', ['client', 'server']); - api.use('ecmascript@0.5.7', ['client', 'server']); - api.use('ddp-rate-limiter@1.0.5'); - api.use('localstorage@1.0.11', 'client'); - api.use('tracker@1.1.0', 'client'); - api.use('check@1.2.3', 'server'); - api.use('random@1.0.10', ['client', 'server']); - api.use('ejson@1.0.12', 'server'); - api.use('callback-hook@1.0.9', ['client', 'server']); + api.use('underscore', ['client', 'server']); + api.use('ecmascript', ['client', 'server']); + api.use('ddp-rate-limiter'); + api.use('localstorage', 'client'); + api.use('tracker', 'client'); + api.use('check', 'server'); + api.use('random', ['client', 'server']); + api.use('ejson', 'server'); + api.use('callback-hook', ['client', 'server']); // use unordered to work around a circular dependency // (service-configuration needs Accounts.connection) - api.use('service-configuration@1.0.10', ['client', 'server'], { unordered: true }); + api.use('service-configuration', ['client', 'server'], { unordered: true }); // needed for getting the currently logged-in user - api.use('ddp@1.2.5', ['client', 'server']); + api.use('ddp', ['client', 'server']); // need this because of the Meteor.users collection but in the future // we'd probably want to abstract this away - api.use('mongo@1.1.10', ['client', 'server']); + api.use('mongo', ['client', 'server']); // If the 'blaze' package is loaded, we'll define some helpers like // {{currentUser}}. If not, no biggie. - api.use('blaze@2.1.8', 'client', {weak: true}); + api.use('blaze', 'client', {weak: true}); // Allow us to detect 'autopublish', and publish some Meteor.users fields if // it's loaded. - api.use('autopublish@1.0.7', 'server', {weak: true}); + api.use('autopublish', 'server', {weak: true}); - api.use('oauth-encryption@1.2.0', 'server', {weak: true}); + api.use('oauth-encryption', 'server', {weak: true}); // Though this "Accounts" symbol is the only official Package export for // the accounts-base package, modules that import accounts-base will