ci(e2e): do not run sync automatically (#24717)

This commit is contained in:
Liam DeBeasi
2022-02-04 11:27:16 -05:00
committed by GitHub
parent f5c5c3cffa
commit df84d155ea
5 changed files with 10 additions and 6 deletions

View File

@ -4,12 +4,12 @@
"private": true,
"scripts": {
"ng": "ng",
"start": "npm run sync && ng serve",
"start": "ng serve",
"sync:build": "sh scripts/build-ionic.sh",
"sync": "sh scripts/sync.sh",
"build": "npm run sync && ng build --configuration production --no-progress",
"build": "ng build --configuration production --no-progress",
"lint": "ng lint",
"postinstall": "npm run sync && ngcc",
"postinstall": "ngcc",
"serve:ssr": "node dist/test-app/server/main.js",
"build:ssr": "ng build --prod && ng run test-app:server:production",
"dev:ssr": "ng run test-app:serve-ssr",