Skip to content

Commit

Permalink
package: fix format:prettier:raw script (#1599)
Browse files Browse the repository at this point in the history
This was failing on Windows native cmd. Using double quotes should work everywhere.
  • Loading branch information
XhmikosR committed Dec 27, 2020
1 parent c6679ae commit 5c9e1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"format": "npm run format:es && npm run format:prettier",
"format:es": "npm run lint:es -- --fix",
"format:prettier": "npm run format:prettier:raw -- --write",
"format:prettier:raw": "prettier '**/*.{js,ts,md,json,yml}' --ignore-path .prettierignore",
"format:prettier:raw": "prettier \"**/*.{js,ts,md,json,yml}\" --ignore-path .prettierignore",
"build:docs": "jsdoc --configure jsdoc-config.json",
"pre-commit": "lint-staged"
},
Expand Down

0 comments on commit 5c9e1cd

Please sign in to comment.