Skip to content

Commit

Permalink
Use single quotes, not double quotes, in npm scripts
Browse files Browse the repository at this point in the history
Single quotes prevent shell expansion of globs. Double quotes don't.
  • Loading branch information
lpsinger committed Aug 13, 2023
1 parent 8cfadbd commit e470f10
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 @@ -5,11 +5,11 @@
"build:remix": "remix build",
"build:sass": "sass -Inode_modules/@uswds -Inode_modules/@uswds/uswds/packages app/theme.scss app/theme.css",
"build": "run-s build:sass build:remix",
"dev:remix": "remix dev --manual -c \"arc sandbox -e testing --host localhost\"",
"dev:remix": "remix dev --manual -c 'arc sandbox -e testing --host localhost'",
"dev:sass": "sass --watch -Inode_modules/@uswds -Inode_modules/@uswds/uswds/packages app/theme.scss app/theme.css",
"dev": "run-p \"dev:*\"",
"dev": "run-p 'dev:*'",
"prepare": "husky install",
"clean": "rimraf --glob build app/theme.css* sam.*",
"clean": "rimraf --glob build 'app/theme.css*' 'sam.*'",
"deploy": "arc deploy --no-hydrate --prune --production"
},
"dependencies": {
Expand Down

0 comments on commit e470f10

Please sign in to comment.