Skip to content

Commit

Permalink
build: wrap concurrently wildcars with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
arturovt committed Mar 28, 2023
1 parent 0b1f932 commit c1f3d0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"// - WEBPACK": "Scripts for building Webpack config transformer",
"build:webpack": "rimraf lib/lib && tsc -p tsconfig.webpack.json",
"// - SCHEMATICS": "Scripts for building schematics and copying its files",
"build:schematics": "rimraf lib/schematics && tsc -p tsconfig.schematics.json && concurrently yarn:copy:schematics:*",
"build:schematics": "rimraf lib/schematics && tsc -p tsconfig.schematics.json && concurrently 'yarn:copy:schematics:*'",
"copy:schematics:json": "cpx schematics/schematics.json lib/schematics",
"copy:schematics:schema": "cpx \"schematics/ng-add/schema*\" lib/schematics/ng-add",
"copy:schematics:files": "cpx \"schematics/ng-add/_files/**/**\" lib/schematics/ng-add/_files",
Expand All @@ -52,7 +52,7 @@
"serve:app:parcel": "yarn serve:app:common parcel --port 4400",
"serve:app:standalone": "yarn serve:app:common standalone --port 4500",
"serve:app:root-config": "yarn webpack-dev-server --config apps/root-config/webpack.config.js",
"serve:all": "concurrently yarn:serve:app:*",
"serve:all": "concurrently 'yarn:serve:app:*'",
"// - INTEGRATION BUILDS": "Build apps that are required for E2E testing #requires yarn install:integration",
"build:app:shop": "nx build shop",
"build:app:chat": "nx build chat",
Expand All @@ -64,7 +64,7 @@
"build:app:root-config": "yarn webpack --mode production --config apps/root-config/webpack.config.js",
"build:all": "yarn build:app:root-config && nx run-many --target build --projects=shop,chat,navbar,noop-zone,elements,parcel,standalone --parallel --configuration production",
"// - APPS": "Serve apps that are required for E2E testing #requires yarn build:integration",
"start:all": "concurrently -n w: yarn:start:app:*",
"start:all": "concurrently -n w: 'yarn:start:app:*'",
"start:app:shop": "serve dist/apps/shop -s -l 4200 --cors",
"start:app:chat": "serve dist/apps/chat -s -l 9000 --cors",
"start:app:navbar": "serve dist/apps/navbar -s -l 4300 --cors",
Expand Down

0 comments on commit c1f3d0b

Please sign in to comment.