From 9e4e4a9b0ccdef83534b7723d61786ea99c645d4 Mon Sep 17 00:00:00 2001 From: Adina Parpalita Date: Wed, 22 Jan 2020 14:27:29 +0200 Subject: [PATCH] fix build scripts (#1313) --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 7c41410a8..cdc0bf0ed 100644 --- a/package.json +++ b/package.json @@ -9,11 +9,11 @@ "build:aos-extension": "npx rimraf dist/@alfresco/adf-office-services-ext && ng build adf-office-services-ext && cpr projects/adf-office-services-ext/ngi.json dist/@alfresco/adf-office-services-ext/ngi.json && cpr projects/adf-office-services-ext/assets dist/@alfresco/adf-office-services-ext/assets", "build.shared": "ng build aca-shared", "build.aos": "npm run build:aos-extension", - "build.extensions": "npm run build.shared && npm run build:aos-extension", + "build.extensions": "npm run build.shared && npm run build.aos", "build.app": "node --max-old-space-size=8192 node_modules/@angular/cli/bin/ng build app", - "build": "npm run validate-config && build.extensions && npm run build.app -- --prod", + "build": "npm run validate-config && npm run build.extensions && npm run build.app -- --prod", "build.js-api": "./scripts/install-local-js-api.sh && npm run build", - "build.adf": "./scripts/install-local-adf.sh && build.extensions && npm run build.app", + "build.adf": "./scripts/install-local-adf.sh && npm run build.extensions && npm run build.app", "build.e2e": "npm run build.extensions && npm run build.app -- --prod --configuration=e2e", "test": "ng test app --code-coverage", "test:ci": "npm run build.extensions && ng test adf-office-services-ext --watch=false && ng test app --code-coverage --watch=false",