From 4b4ead7af35999a29fd2cede05d121116ebd20de Mon Sep 17 00:00:00 2001 From: Ricardo Prado Date: Thu, 15 Jul 2021 18:47:06 -0300 Subject: [PATCH 1/2] Adding quotes --- common/config/rush/command-line.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index b2442ca748..1dd55c9182 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -63,7 +63,7 @@ "summary": "Compile & serve editor server (only in dev mode)", "description": "Build and run the NEO•ONE editor server", "safeForSimultaneousRushProcesses": true, - "shellCommand": "mkdir -p ./dist/server && touch ./dist/server/index.js && cross-env NODE_OPTIONS=\"--max-old-space-size=3072\" node ./packages/neo-one-build-tools-web/dist/compile --watch --bundle server" + "shellCommand": "mkdir \"./dist/server\" && touch ./dist/server/index.js && cross-env NODE_OPTIONS=\"--max-old-space-size=3072\" node ./packages/neo-one-build-tools-web/dist/compile --watch --bundle server" }, { "commandKind": "global", @@ -495,4 +495,4 @@ ] } ] -} +} \ No newline at end of file From 6d6b524f6d06720e8bf1d4eecaaaceff146d1fbd Mon Sep 17 00:00:00 2001 From: Ricardo Prado Date: Thu, 15 Jul 2021 18:54:06 -0300 Subject: [PATCH 2/2] Applying Spencer's suggestion --- common/config/rush/command-line.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index 1dd55c9182..141b5c6fd0 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -63,7 +63,7 @@ "summary": "Compile & serve editor server (only in dev mode)", "description": "Build and run the NEO•ONE editor server", "safeForSimultaneousRushProcesses": true, - "shellCommand": "mkdir \"./dist/server\" && touch ./dist/server/index.js && cross-env NODE_OPTIONS=\"--max-old-space-size=3072\" node ./packages/neo-one-build-tools-web/dist/compile --watch --bundle server" + "shellCommand": "mkdir \"./dist\" && mkdir \"./dist/server\" && touch ./dist/server/index.js && cross-env NODE_OPTIONS=\"--max-old-space-size=3072\" node ./packages/neo-one-build-tools-web/dist/compile --watch --bundle server" }, { "commandKind": "global",