Files
meteor/packages/logging/package.js
Gabriel Grubba cdb0b17353 Meteor version to 2.11.0 ☄️
2023-03-02 15:55:21 -03:00

32 lines
872 B
JavaScript

Package.describe({
summary: 'Logging facility.',
version: '1.3.2',
});
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.addFiles('logging_server.js', 'server')
api.addFiles('logging_browser.js', 'client')
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']);
});