Skip to content

Commit

Permalink
fix: issue with single quotes in package.json not working for windows (
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget authored Aug 8, 2024
1 parent 524d7b1 commit 5d78497
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"ci:test": "nx run-many --target test",
"ci:e2e": "nx e2e @builder.io/e2e-app",
"test:update": "nx run-many -t test:update",
"fmt": "run-s 'fmt:*'",
"fmt": "run-s \"fmt:*\"",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write",
"lint": "run-p -c 'lint:*'",
"lint:eslint": "eslint --cache 'packages/**/*.ts{,x}'",
"lint": "run-p -c \"lint:*\"",
"lint:eslint": "eslint --cache \"packages/**/*.ts{,x}\"",
"lint:prettier": "yarn run prettier --check",
"prettier": "prettier --cache --loglevel warn '{packages,docs,e2e}/**/*.{js,jsx,ts,tsx,json,md,html}'"
"prettier": "prettier --cache --loglevel warn \"{packages,docs,e2e}/**/*.{js,jsx,ts,tsx,json,md,html}\""
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 5d78497

Please sign in to comment.