From d7dfd3bf2eb3ceaf5deac6554957e6cf4f22f047 Mon Sep 17 00:00:00 2001 From: Mark Wiemer <7833360+mark-wiemer@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:00:07 -0700 Subject: [PATCH] Wrap special chars in double quotes (#62) --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 73635b2..cb5cde4 100644 --- a/package.json +++ b/package.json @@ -34,9 +34,9 @@ "build:e2e": "npm run build -- --e2e", "check-types": "tsc", "clean": "npm run clean:dist && npm run clean:out && npm run clean:watch", - "clean:dist": "del-cli client/dist && del-cli server/dist/*.js(.map)?", + "clean:dist": "del-cli client/dist \"server/dist/*.js*\"", "clean:out": "del-cli out", - "clean:watch": "del-cli client/dist && del-cli server/out && del-cli util/src/*.js*", + "clean:watch": "del-cli client/dist server/out \"util/src/*.js*\"", "clean:watch//": "echo If watch is running, files will reappear instantly!", "precompile-ts": "npm run clean:out", "compile-ts": "tsc --noEmit false --outDir out", @@ -53,7 +53,7 @@ "test": "npm run test:grammar && npm run test:unit && npm run test:e2e", "pretest:e2e": "npm run build:e2e", "test:e2e": "vscode-test", - "test:grammar": "vscode-tmgrammar-snap tmgrammar-test/*.ahk", + "test:grammar": "vscode-tmgrammar-snap \"tmgrammar-test/*.ahk\"", "pretest:unit": "npm run compile-ts", "test:unit": "mocha", "prevalidate": "npm run clean",