Files
meteor/packages/logging/package.js
2013-05-13 11:51:50 -07:00

16 lines
334 B
JavaScript

Package.describe({
summary: "Logging facility.",
internal: true
});
Package.on_use(function (api, where) {
where = where || ['client', 'server'];
api.add_files('logging.js', where);
});
Package.on_test(function (api) {
api.use('tinytest');
api.use('logging', 'client');
api.add_files('logging_test.js', 'client');
});