From 3ed9dd6b845c569f107b19d03206919d140aa7a2 Mon Sep 17 00:00:00 2001 From: dhrn <14145706+dhrn@users.noreply.github.com> Date: Mon, 20 Apr 2020 23:29:24 +0530 Subject: [PATCH] =?UTF-8?q?[ACA-3046]=20Create=20new=20folder=20window=20-?= =?UTF-8?q?=20missing=20'Name'/'Description'=20la=E2=80=A6=20(#1421)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [ACA-3046] Create new folder window - missing 'Name'/'Description' labels * * replaced dot with semi colon * * fixed e2e build --- .travis.yml | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a4a1e7719..eefd0d119 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,8 +35,8 @@ jobs: - stage: Quality and Unit tests name: 'Code quality checks' script: npm run lint - - name: 'Build' - script: npm run build + - name: 'Build no animation' + script: npm run build.e2e after_success: ./scripts/ci/utils/artifact-to-s3.sh -a ./dist/app -o "$S3_DBP_FOLDER/alfresco-content-app.tar.bz2" - name: 'Unit tests aos' script: diff --git a/package.json b/package.json index 44d2584d0..b141e4b17 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,10 @@ "build.aos": "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 && npm run build.app -- --prod --configuration=e2e", + "build": "npm run validate-config && npm run build.app -- --prod", "build.js-api": "./scripts/install-local-js-api.sh && npm run build", "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", + "build.e2e": "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", "lint": "ng lint && npm run spellcheck && npm run e2e.typecheck",