mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
26 lines
553 B
JavaScript
26 lines
553 B
JavaScript
Package.describe({
|
|
summary: "Logging facility.",
|
|
version: '1.0.4-pre.2'
|
|
});
|
|
|
|
Npm.depends({
|
|
"cli-color": "0.2.3"
|
|
});
|
|
|
|
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']);
|
|
});
|