This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Compatibility with `Meteor@1.4.2` - ES6 modules and import support - Codebase updated with efficiency in mind
- Loading branch information
1 parent
1cb79c4
commit 49cbf06
Showing
4 changed files
with
158 additions
and
97 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
babel-compiler@5.8.24_1 | ||
babel-runtime@0.1.4 | ||
base64@1.0.4 | ||
binary-heap@1.0.4 | ||
blaze@2.1.3 | ||
blaze-tools@1.0.4 | ||
boilerplate-generator@1.0.4 | ||
caching-compiler@1.0.0 | ||
callback-hook@1.0.4 | ||
check@1.1.0 | ||
coffeescript@1.0.11 | ||
ddp@1.2.2 | ||
ddp-client@1.2.1 | ||
ddp-common@1.2.2 | ||
ddp-server@1.2.2 | ||
deps@1.0.9 | ||
diff-sequence@1.0.1 | ||
ecmascript@0.1.6 | ||
ecmascript-runtime@0.2.6 | ||
ejson@1.0.7 | ||
geojson-utils@1.0.4 | ||
html-tools@1.0.5 | ||
htmljs@1.0.5 | ||
id-map@1.0.4 | ||
jquery@1.11.4 | ||
logging@1.0.8 | ||
meteor@1.1.10 | ||
minimongo@1.0.10 | ||
mongo@1.1.3 | ||
mongo-id@1.0.1 | ||
npm-mongo@1.4.39_1 | ||
observe-sequence@1.0.7 | ||
ordered-dict@1.0.4 | ||
ostrio:cron-jobs@1.0.6 | ||
promise@0.5.1 | ||
random@1.0.5 | ||
reactive-var@1.0.6 | ||
retry@1.0.4 | ||
routepolicy@1.0.6 | ||
sha@1.0.4 | ||
spacebars@1.0.7 | ||
spacebars-compiler@1.0.7 | ||
tracker@1.0.9 | ||
ui@1.0.8 | ||
underscore@1.0.4 | ||
webapp@1.2.3 | ||
webapp-hashing@1.0.5 | ||
allow-deny@1.0.5 | ||
babel-compiler@6.9.0 | ||
babel-runtime@0.1.10 | ||
base64@1.0.9 | ||
binary-heap@1.0.9 | ||
blaze@2.1.8 | ||
blaze-tools@1.0.9 | ||
boilerplate-generator@1.0.9 | ||
caching-compiler@1.1.6 | ||
callback-hook@1.0.9 | ||
check@1.2.3 | ||
coffeescript@1.2.3 | ||
ddp@1.2.5 | ||
ddp-client@1.2.5 | ||
ddp-common@1.2.5 | ||
ddp-server@1.2.6 | ||
deps@1.0.12 | ||
diff-sequence@1.0.6 | ||
ecmascript@0.5.7 | ||
ecmascript-runtime@0.3.12 | ||
ejson@1.0.12 | ||
geojson-utils@1.0.9 | ||
html-tools@1.0.10 | ||
htmljs@1.0.10 | ||
id-map@1.0.8 | ||
jquery@1.11.9 | ||
logging@1.1.14 | ||
meteor@1.2.16 | ||
minimongo@1.0.17 | ||
modules@0.7.5 | ||
modules-runtime@0.7.5 | ||
mongo@1.1.10 | ||
mongo-id@1.0.5 | ||
npm-mongo@1.5.45 | ||
observe-sequence@1.0.12 | ||
ordered-dict@1.0.8 | ||
ostrio:cron-jobs@1.0.7 | ||
promise@0.8.3 | ||
random@1.0.10 | ||
reactive-var@1.0.10 | ||
retry@1.0.7 | ||
routepolicy@1.0.11 | ||
sha@1.0.8 | ||
spacebars@1.0.12 | ||
spacebars-compiler@1.0.12 | ||
tracker@1.1.0 | ||
ui@1.0.11 | ||
underscore@1.0.9 | ||
webapp@1.3.10 | ||
webapp-hashing@1.0.9 |
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,14 +1,14 @@ | ||
Package.describe({ | ||
name: 'ostrio:cron-jobs', | ||
version: '1.0.6', | ||
version: '1.0.7', | ||
summary: 'Task scheduler. With support of cluster or multiple NodeJS instances.', | ||
git: 'https://github.com/VeliovGroup/Meteor-CRON-jobs', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.2.1'); | ||
api.use(['coffeescript', 'mongo', 'check', 'sha'], 'server'); | ||
api.addFiles('cron-jobs.coffee', 'server'); | ||
api.versionsFrom('1.4'); | ||
api.use(['coffeescript', `ecmascript`, 'mongo', 'check', 'sha'], 'server'); | ||
api.mainModule('cron-jobs.coffee', 'server'); | ||
api.export('CRONjob'); | ||
}); |