Skip to content

Commit

Permalink
Wrap special chars in double quotes (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer authored Oct 8, 2024
1 parent 4ebf942 commit d7dfd3b
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 @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit d7dfd3b

Please sign in to comment.