Merge branch 'devel' into release-2.3

This commit is contained in:
filipenevola
2021-05-07 10:18:13 -04:00

View File

@@ -6,7 +6,7 @@ Package.describe({
// between such packages and the build tool.
name: 'launch-screen',
summary: 'Default and customizable launch screen on mobile.',
version: '1.3.0'
version: '1.2.1'
});
Cordova.depends({
@@ -14,9 +14,9 @@ Cordova.depends({
});
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.addFiles('mobile-launch-screen.js', 'web');
api.addFiles('default-behavior.js', 'web');
api.use(['blaze', 'templating'], 'web', { weak: true });
api.export('LaunchScreen');
});