Skip to content

Commit

Permalink
chore(build): double quote globs in npm scripts (#66)
Browse files Browse the repository at this point in the history
Many shells don't support single quotes including Windows cmd
  • Loading branch information
XhmikosR authored Feb 10, 2020
1 parent 28fe73d commit e84bdb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/lockfile-lint-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier-standard '**/*.js'",
"format": "prettier-standard \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage:view": "open-cli coverage/lcov-report/index.html",
Expand Down
2 changes: 1 addition & 1 deletion packages/lockfile-lint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier-standard '**/*.js'",
"format": "prettier-standard \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage:view": "open-cli coverage/lcov-report/index.html",
Expand Down

0 comments on commit e84bdb7

Please sign in to comment.