Files
meteor/packages/logging/package.js
skirunman 073f2410a6 Cordova 7.1.0, Android 6.3.0 and iOS 4.5.3 updates (#9213)
* Update to Cordova 7.1.0 and Cordova Android 6.3.0

* Update deprecated Cordova plugins

* Update History.md for both Cordova updates and previous iOS icons and launch screens

* Update the PR #

* Remove change to History.md

This change is now in https://github.com/meteor/meteor/pull/9227

* Update to iOS 4.5.2

Update to new Cordova iOS 4.5.2 release. https://cordova.apache.org/announcements/2017/10/16/ios-release.html

* Update History.md for Cordova iOS 4.5.2.

* Update to Cordova iOS 4.5.3

Update to Cordova iOS 4.5.3, see https://cordova.apache.org/announcements/2017/10/31/ios-release.html

* Tweak history for update to Cordova iOS 4.5.3

* Update iOS launch screens 

Updating iOS launch screens to match what is supported in Cordova iOS 4.5.3 and remove latest iPad Pro sizes that are not supported in Xcode 9 and therefore not in Cordova iOS. See c3d24a9f02/bin/templates/scripts/cordova/lib/prepare.js
2017-11-08 18:14:12 +02:00

30 lines
622 B
JavaScript

Package.describe({
summary: "Logging facility.",
version: '1.1.19'
});
Npm.depends({
"cli-color": "0.2.3"
});
Npm.strip({
"es5-ext": ["test/"]
});
Cordova.depends({
'cordova-plugin-console': '1.1.0' // Dreprecated, remove in future
});
Package.onUse(function (api) {
api.export('Log');
api.use(['underscore', 'ejson', 'modules']);
api.addFiles('logging.js');
api.addFiles('logging_cordova.js', 'web.cordova');
});
Package.onTest(function (api) {
api.use(['tinytest', 'underscore', 'ejson']);
api.use('logging', ['client', 'server']);
api.addFiles('logging_test.js', ['server', 'client']);
});