/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/launch-screen/package.js
22 строки
756 B
denihs
Meteor version to 3.0 :comet:
15 июл 2024, 20:36
Не верифицирован
15 июл 2024, 20:36
b494499
Код
Авторство
О чём код?
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: '2.0.1', }); Cordova.depends({ 'cordova-plugin-splashscreen': '6.0.0' }); Package.onUse(function(api) { api.addFiles('mobile-launch-screen.js', 'web.cordova'); api.addFiles('default-behavior.js', 'web.cordova'); api.use(['blaze', 'templating'], 'web.cordova', { weak: true }); api.export('LaunchScreen'); });