Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

build: update package.json script to use yarn #636

Merged
merged 1 commit into from
Sep 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"license": "MIT",
"angular-cli": {},
"scripts": {
"start": "npm run build-themes && ng serve",
"start-jit": "npm run build-themes && ng serve --aot=false",
"start": "yarn build-themes && ng serve",
"start-jit": "yarn build-themes && ng serve --aot=false",
"lint": "tslint -p src/tsconfig.json",
"test": "npm run build-themes && ng test",
"test": "yarn build-themes && ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"build-themes": "bash ./tools/build-themes.sh",
"prod-build": "npm run build-themes && ng build --aot --prod",
"postinstall": "webdriver-manager update --gecko false && npm run build-themes",
"prod-build": "yarn build-themes && ng build --aot --prod",
"postinstall": "webdriver-manager update --gecko false && yarn build-themes",
"publish-prod": "bash ./tools/deploy.sh stable prod",
"publish-dev": "bash ./tools/deploy.sh",
"publish-beta": "bash ./tools/deploy.sh stable beta"
Expand Down