mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
24 lines
490 B
JavaScript
24 lines
490 B
JavaScript
Package.describe({
|
|
name: "logging",
|
|
test: "logging-test",
|
|
summary: "Logging facility.",
|
|
version: '1.0.0',
|
|
internal: true
|
|
});
|
|
|
|
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']);
|
|
});
|