-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- βοΈ Meteor: `v2.4.3` - π¦ NPM: `v2.2.4` __Changes__: - π¦ Update potentially unsafe NPM dev-dependencies; - π¨βπ» Minor codebase optimizations; - π€ Compatibility with `mongodb@3.5.5` (*mongo-native*); - π€ Compatibility with `meteor@1.10.*`; - π¦ [dev-dependency] `bson@4.0.4` (*was `mocha@4.0.3`*); - π¦ [dev-dependency] `mocha@7.1.1` (*was `mocha@7.1.0`*); - π¦ [dev-dependency] `mocha@3.5.5` (*was `mocha@3.5.4`*); - π Minor documentation updates.
- Loading branch information
1 parent
57fa303
commit daa16eb
Showing
5 changed files
with
95 additions
and
69 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
Package.describe({ | ||
name: 'ostrio:cron-jobs', | ||
version: '2.4.2', | ||
version: '2.4.3', | ||
summary: 'Scheduler and manager for jobs and tasks in Node.js (Meteor.js) on multi-server and clusters setup', | ||
git: 'https://github.com/VeliovGroup/josk', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
Package.onUse((api) => { | ||
api.versionsFrom('1.6'); | ||
api.use('ecmascript', 'server'); | ||
api.mainModule('index.js', 'server'); | ||
}); | ||
|
||
Package.onTest(function (api) { | ||
Package.onTest((api) => { | ||
api.use(['ecmascript', 'mongo', 'practicalmeteor:chai', 'meteortesting:mocha'], 'server'); | ||
api.addFiles('test/meteor.js', 'server'); | ||
}); |
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