Files
meteor/packages/logging/package.js
David Glasser bc6239dfc1 vbump for rc9
Hopefully we won't have to do "bump for all the npm modules" again after
this
2014-08-15 12:34:47 -07:00

21 lines
429 B
JavaScript

Package.describe({
summary: "Logging facility.",
version: '1.0.2'
});
Npm.depends({
"cli-color": "0.2.3"
});
Package.on_use(function (api) {
api.export('Log');
api.use(['underscore', 'ejson']);
api.add_files('logging.js');
});
Package.on_test(function (api) {
api.use(['tinytest', 'underscore', 'ejson']);
api.use('logging', ['client', 'server']);
api.add_files('logging_test.js', ['server', 'client']);
});