nativescript-cloud
Advanced tools
Comparing version 1.18.1-2019-08-16-12 to 1.18.1-2019-08-16-13
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
464592
6232