Files
meteor/packages/logging/package.js
Ben Newman ca2322e05b Use Npm.strip to remove some extraneous large files from core packages.
So far I have only removed files from packages that are included by
default in newly `meteor create`d projects. We should probably make a pass
over all the core packages, too.
2014-10-17 18:24:31 -04:00

30 lines
587 B
JavaScript

Package.describe({
summary: "Logging facility.",
version: '1.0.4'
});
Npm.depends({
"cli-color": "0.2.3"
});
Npm.strip({
"es5-ext": ["test/"]
});
Cordova.depends({
'org.apache.cordova.console': '0.2.10'
});
Package.on_use(function (api) {
api.export('Log');
api.use(['underscore', 'ejson']);
api.add_files('logging.js');
api.add_files('logging_cordova.js', 'web.cordova');
});
Package.on_test(function (api) {
api.use(['tinytest', 'underscore', 'ejson']);
api.use('logging', ['client', 'server']);
api.add_files('logging_test.js', ['server', 'client']);
});