mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
311 B
JavaScript
15 lines
311 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('logging', 'client');
|
|
api.add_files('logging_test.js', 'client');
|
|
});
|