mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
Package.describe({
|
|
summary: "Random number generator and utilities",
|
|
version: '1.0.0'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('underscore');
|
|
api.export('Random');
|
|
api.add_files('random.js');
|
|
api.add_files('deprecated.js');
|
|
});
|
|
|
|
Package.on_test(function(api) {
|
|
api.use('random');
|
|
api.use('tinytest');
|
|
api.add_files('random_tests.js', ['client', 'server']);
|
|
});
|