Skip to content

Commit b5eb24e

Browse files
authored
Merge pull request #71 from bathini79/fix/67-dev-server-not-starting-from-powershell
#71 67 Added Proper Escaping quotes in scripts:'build' to work in powershell
2 parents 396c969 + 3b15edd commit b5eb24e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/firecamp-agent-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"keywords": [],
88
"main": "src/index.ts",
99
"scripts": {
10-
"build": "run-p 'build:*'",
10+
"build": "run-p \"build:*\"",
1111
"build:main": "tsc -p tsconfig.json",
1212
"clean": "rimraf dist/",
1313
"fix": "run-s fix:*",

packages/firecamp-cookie-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "",
88
"keywords": [],
99
"scripts": {
10-
"build": "run-p 'build:*'",
10+
"build": "run-p \"build:*\"",
1111
"build:main": "tsc -p tsconfig.json",
1212
"clean": "rimraf build/",
1313
"fix": "run-s fix:*",

playgrounds/firecamp-socket-io-executor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "",
77
"keywords": [],
88
"scripts": {
9-
"build": "run-p 'build:*'",
9+
"build": "run-p \"build:*\"",
1010
"build:main": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
1111
"clean": "rimraf dist/",
1212
"fix": "run-s fix:*",

playgrounds/firecamp-ws-executor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "",
1010
"keywords": [],
1111
"scripts": {
12-
"build": "run-p 'build:*'",
12+
"build": "run-p \"build:*\"",
1313
"build:main": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
1414
"clean": "rimraf dist/",
1515
"fix": "run-s fix:*",

0 commit comments

Comments
 (0)