Socket
Socket
Sign inDemoInstall

nativescript-cloud

Package Overview
Dependencies
Maintainers
7
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-cloud - npm Package Compare versions

Comparing version 1.18.1-2019-08-16-12 to 1.18.1-2019-08-16-13

6

lib/commands/build-command-helper.js

@@ -75,4 +75,3 @@ "use strict";

env: this.$options.env,
useHotModuleReload: this.$options.hmr,
aab: this.$options.aab
useHotModuleReload: this.$options.hmr
};

@@ -86,3 +85,4 @@ const buildConfiguration = this.$options.release ? constants_1.CLOUD_BUILD_CONFIGURATIONS.RELEASE : constants_1.CLOUD_BUILD_CONFIGURATIONS.DEBUG;

pathToCertificate,
certificatePassword: this.$options.keyStorePassword
certificatePassword: this.$options.keyStorePassword,
aab: this.$options.aab
},

@@ -89,0 +89,0 @@ iOSBuildData: {

@@ -117,3 +117,3 @@ "use strict";

}
if (projectSettings.aab) {
if (androidBuildData.aab) {
additionalCliFlags.push("--aab");

@@ -157,3 +157,4 @@ }

platform,
emulator: iOSBuildData && !iOSBuildData.buildForDevice
emulator: iOSBuildData && !iOSBuildData.buildForDevice,
extension: androidBuildData.aab ? "aab" : null
});

@@ -160,0 +161,0 @@ this.$logger.info(`The result of ${buildInformationString} successfully downloaded. OutputFilePath: ${localBuildResult}`);

@@ -118,3 +118,7 @@ "use strict";

this.$logger.info(`Result url: ${serverResultObj.fullPath}`);
const targetFileName = path.join(destinationDir, serverResultObj.filename);
let filename = serverResultObj.filename;
if (serverOutputOptions.extension) {
filename = `${path.parse(filename).name}.${serverOutputOptions.extension}`;
}
const targetFileName = path.join(destinationDir, filename);
targetFileNames.push(targetFileName);

@@ -121,0 +125,0 @@ const targetFile = this.$fs.createWriteStream(targetFileName);

{
"name": "nativescript-cloud",
"version": "1.18.1-2019-08-16-12",
"version": "1.18.1-2019-08-16-13",
"description": "Used for cloud support in NativeScript CLI",

@@ -5,0 +5,0 @@ "main": "lib/bootstrap.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc