mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
I had to scrap the 1.4.2-beta.8 release because meteor-tool@1.4.2-beta.8 got published by a partial run of the publish-release script, but then the publish-release script thought meteor-tool changed after that, and I didn't want to republish it as something like 1.4.2-1-beta.8.
23 lines
738 B
JavaScript
23 lines
738 B
JavaScript
Package.describe({
|
|
// XXX We currently hard-code the "launch-screen" package in the
|
|
// build tool. If this package is in your app, we turn off the
|
|
// default splash screen loading behavior (this packages hides it
|
|
// explicitly). In the future, there should be a better interface
|
|
// between such packages and the build tool.
|
|
name: 'launch-screen',
|
|
summary: 'Default and customizable launch screen on mobile.',
|
|
version: '1.1.0-beta.9'
|
|
});
|
|
|
|
Cordova.depends({
|
|
'cordova-plugin-splashscreen': '4.0.0'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.addFiles('mobile-launch-screen.js', 'web');
|
|
api.addFiles('default-behavior.js', 'web');
|
|
api.use(['blaze', 'templating'], 'web', { weak: true });
|
|
|
|
api.export('LaunchScreen');
|
|
});
|