Files
meteor/packages/random/package.js
David Glasser d757b366d2 More fixes, from the merge of devel into linker.
Mostly related to making the big OAuth refactoring linker-friendly.
2013-05-28 15:52:50 -07:00

17 lines
378 B
JavaScript

Package.describe({
summary: "Random number generator and utilities",
internal: true
});
Package.on_use(function (api, where) {
where = where || ['client', 'server'];
api.use('underscore');
api.add_files('random.js', where);
});
Package.on_test(function(api) {
api.use('random');
api.use('tinytest');
api.add_files('random_tests.js', ['client', 'server']);
});