mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
30 lines
786 B
JavaScript
30 lines
786 B
JavaScript
Package.describe({
|
|
summary: 'Logging facility.',
|
|
version: '1.3.0-rc240.0'
|
|
});
|
|
|
|
Npm.depends({
|
|
'chalk': '4.1.1'
|
|
});
|
|
|
|
Npm.strip({
|
|
'es5-ext': ['test/']
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.export('Log');
|
|
// The `ecmascript-runtime-client` package is explicitly depended upon
|
|
// here due to this package's dependency on
|
|
// `String.prototype.padRight` which is polyfilled only in
|
|
// `ecmascript-runtime-client@0.6.2` or newer.
|
|
api.use(['ejson', 'ecmascript', 'ecmascript-runtime-client']);
|
|
api.mainModule('logging.js');
|
|
api.mainModule('logging_cordova.js', 'web.cordova');
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use(['tinytest', 'ejson', 'ecmascript']);
|
|
api.use('logging', ['client', 'server']);
|
|
api.mainModule('logging_test.js', ['server', 'client']);
|
|
});
|