-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add install-peer-deps to build process
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,10 @@ | |
"Simon Skoczylas <[email protected]>" | ||
], | ||
"scripts": { | ||
"build": "ng build rico-angular", | ||
"build-watch": "ng build rico-angular --watch", | ||
"build": "npm-install-peers && ng build rico-angular", | ||
"build-watch": "npm-install-peers && ng build rico-angular --watch", | ||
"pack": "cd dist/rico-angular && npm pack", | ||
"dist": "npm run build && npm run pack", | ||
"dist": "npm-install-peers && npm run build && npm run pack", | ||
"start-int-test-server": "docker run -d -p 8085:8080 --rm --name rico-angular-int-server ricoprojects/integration:tomee-1.0.0-CR2", | ||
"int-test": "npm-install-peers && ng test --main src/test.integration.ts --ts-config tsconfig.spec.integration.json", | ||
"stop-int-test-server": "docker stop rico-angular-int-server", | ||
|