mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Remove version constraints from packages/accounts-password/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. https://github.com/meteor/meteor/issues/7951#issuecomment-255615050
This commit is contained in:
@@ -4,24 +4,24 @@ Package.describe({
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
api.use('npm-bcrypt@0.9.0', 'server');
|
||||
api.use('npm-bcrypt', 'server');
|
||||
|
||||
api.use([
|
||||
'accounts-base@1.2.10',
|
||||
'srp@1.0.9',
|
||||
'sha@1.0.8',
|
||||
'ejson@1.0.12',
|
||||
'ddp@1.2.5'
|
||||
'accounts-base',
|
||||
'srp',
|
||||
'sha',
|
||||
'ejson',
|
||||
'ddp'
|
||||
], ['client', 'server']);
|
||||
|
||||
// Export Accounts (etc) to packages using this one.
|
||||
api.imply('accounts-base@1.2.10', ['client', 'server']);
|
||||
api.imply('accounts-base', ['client', 'server']);
|
||||
|
||||
api.use('email@1.1.16', ['server']);
|
||||
api.use('random@1.0.10', ['server']);
|
||||
api.use('check@1.2.3');
|
||||
api.use('underscore@1.0.9');
|
||||
api.use('ecmascript@0.5.7');
|
||||
api.use('email', ['server']);
|
||||
api.use('random', ['server']);
|
||||
api.use('check');
|
||||
api.use('underscore');
|
||||
api.use('ecmascript');
|
||||
|
||||
api.addFiles('email_templates.js', 'server');
|
||||
api.addFiles('password_server.js', 'server');
|
||||
|
||||
Reference in New Issue
Block a user