forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-3.1.1' into leonardo/refactor-and-perf-phase-2
- Loading branch information
Showing
54 changed files
with
538 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
Package.describe({ | ||
summary: "Password support for accounts", | ||
// Note: 2.2.0-beta.3 was published during the Meteor 1.6 prerelease | ||
// process, so it might be best to skip to 2.3.x instead of reusing | ||
// 2.2.x in the future. The version was also bumped to 2.0.0 temporarily | ||
// during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2 | ||
// through -beta.5 and -rc.0 have already been published. | ||
version: "3.0.2", | ||
}); | ||
|
||
Npm.depends({ | ||
bcrypt: "5.0.1", | ||
}); | ||
|
||
Package.onUse((api) => { | ||
api.use(["accounts-base", "sha", "ejson", "ddp"], ["client", "server"]); | ||
|
||
// Export Accounts (etc) to packages using this one. | ||
api.imply("accounts-base", ["client", "server"]); | ||
|
||
api.use("email", "server"); | ||
api.use("random", "server"); | ||
api.use("check", "server"); | ||
api.use("ecmascript"); | ||
|
||
api.addFiles("email_templates.js", "server"); | ||
api.addFiles("password_server.js", "server"); | ||
api.addFiles("password_client.js", "client"); | ||
}); | ||
|
||
Package.onTest((api) => { | ||
api.use([ | ||
"accounts-password", | ||
"sha", | ||
"tinytest", | ||
"test-helpers", | ||
"tracker", | ||
"accounts-base", | ||
"random", | ||
"email", | ||
"check", | ||
"ddp", | ||
"ecmascript", | ||
]); | ||
api.addFiles("password_tests_setup.js", "server"); | ||
api.addFiles("password_tests.js", ["client", "server"]); | ||
api.addFiles("email_tests_setup.js", "server"); | ||
api.addFiles("email_tests.js", "client"); | ||
}); | ||
Package.describe({ | ||
summary: "Password support for accounts", | ||
// Note: 2.2.0-beta.3 was published during the Meteor 1.6 prerelease | ||
// process, so it might be best to skip to 2.3.x instead of reusing | ||
// 2.2.x in the future. The version was also bumped to 2.0.0 temporarily | ||
// during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2 | ||
// through -beta.5 and -rc.0 have already been published. | ||
version: "3.0.3", | ||
}); | ||
|
||
Npm.depends({ | ||
bcrypt: "5.0.1", | ||
}); | ||
|
||
Package.onUse((api) => { | ||
api.use(["accounts-base", "sha", "ejson", "ddp"], ["client", "server"]); | ||
|
||
// Export Accounts (etc) to packages using this one. | ||
api.imply("accounts-base", ["client", "server"]); | ||
|
||
api.use("email", "server"); | ||
api.use("random", "server"); | ||
api.use("check", "server"); | ||
api.use("ecmascript"); | ||
|
||
api.addFiles("email_templates.js", "server"); | ||
api.addFiles("password_server.js", "server"); | ||
api.addFiles("password_client.js", "client"); | ||
}); | ||
|
||
Package.onTest((api) => { | ||
api.use([ | ||
"accounts-password", | ||
"sha", | ||
"tinytest", | ||
"test-helpers", | ||
"tracker", | ||
"accounts-base", | ||
"random", | ||
"email", | ||
"check", | ||
"ddp", | ||
"ecmascript", | ||
]); | ||
api.addFiles("password_tests_setup.js", "server"); | ||
api.addFiles("password_tests.js", ["client", "server"]); | ||
api.addFiles("email_tests_setup.js", "server"); | ||
api.addFiles("email_tests.js", "client"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package.describe({ | ||
summary: 'The Meteor command-line tool', | ||
version: '3.1.0-beta310.0', | ||
summary: "The Meteor command-line tool", | ||
version: "3.1.0", | ||
}); | ||
|
||
Package.includeTool(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.