Created
July 11, 2015 23:08
-
-
Save robertpitt/fe150ce2cff85fb6148a to your computer and use it in GitHub Desktop.
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
/** | |
* require Kue | |
*/ | |
var kue = Npm.require('kue'), | |
queue = kue.createQueue(); | |
// Use Kue/queue here! | |
console.log(queue); |
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
Package.describe({ | |
name: 'atomic:kue', | |
version: '0.0.1', | |
// Brief, one-line summary of the package. | |
summary: '', | |
// URL to the Git repository containing the source code for this package. | |
git: '', | |
// By default, Meteor will default to using README.md for documentation. | |
// To avoid submitting documentation, set this field to null. | |
documentation: 'README.md' | |
}); | |
Npm.depends({ | |
"kue" : "0.9.3" | |
}) | |
Package.onUse(function(api) { | |
api.versionsFrom('1.1.0.2'); | |
api.addFiles('kue.js', "server"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment