From 7392d0091e3ceda3127807470667e572b9ced08a Mon Sep 17 00:00:00 2001 From: Nadya Atanasova Date: Wed, 19 Jul 2017 15:09:47 +0300 Subject: [PATCH 1/2] Use skipNativePrepare for cloud builds When preparing project from cloud services we do not count on local setup, so skip native preparation --- lib/services/cloud-build-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/cloud-build-service.ts b/lib/services/cloud-build-service.ts index cc4611e..954db2f 100644 --- a/lib/services/cloud-build-service.ts +++ b/lib/services/cloud-build-service.ts @@ -257,7 +257,7 @@ export class CloudBuildService extends EventEmitter implements ICloudBuildServic ignoreScripts: false }; - await this.$platformService.preparePlatform(platform, appFilesUpdaterOptions, null, projectData, config); + await this.$platformService.preparePlatform(platform, appFilesUpdaterOptions, null, projectData, config, [], { skipNativePrepare: true }); } private async getObjectFromS3File(pathToFile: string): Promise { From 0cf48ff35f9a2b212027ab35830eda05c725485f Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Thu, 20 Jul 2017 10:58:51 +0300 Subject: [PATCH 2/2] Bump version to 0.11.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42cc5d6..e6d013c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-cloud", - "version": "0.11.4", + "version": "0.11.5", "description": "Used for cloud support in NativeScript CLI", "main": "lib/bootstrap.js", "scripts": {