From 706b040c2bfce496307972a8e8778a54cd02671b Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Sun, 13 Aug 2023 18:00:56 -0400 Subject: [PATCH] Use single quotes, not double quotes, in npm scripts Single quotes prevent shell expansion of globs. Double quotes don't. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 093f517..92a1a5d 100644 --- a/package.json +++ b/package.json @@ -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": {