From c1c0f73c8963ecf9abc948de4b3582549fa2655c Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Fri, 7 May 2021 17:33:51 +0900 Subject: [PATCH] Revert "Merge pull request #11371 from meteor/launchscreen-client-removal" This reverts commit f804c69a603bc2e66f22ca401c99c331fab8da70. --- packages/launch-screen/package.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index 1352b70175..78b34858f9 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -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'); });