From 8e9f4316b938a5528bad45b900862a844a0a1376 Mon Sep 17 00:00:00 2001 From: Greg Sullivan Date: Thu, 16 Nov 2023 15:07:10 -0800 Subject: [PATCH] Fix Yarn issue (#77) With thanks to @scheinercc --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 124dc88..25e185a 100644 --- a/package.json +++ b/package.json @@ -27,22 +27,22 @@ "development:tailwind:frontend": "npx tailwindcss --postcss -i ./tailwind/tailwind.css -c ./tailwind/tailwind.config.js -o ./theme/style.css", "development:tailwind:editor": "cross-env _TW_TARGET=editor npx tailwindcss --postcss -i ./tailwind/tailwind.css -c ./tailwind/tailwind.config.js -o ./theme/style-editor.css", "development:esbuild": "npx esbuild ./javascript/script.js ./javascript/block-editor.js ./javascript/tailwind-typography-classes.js --target=esnext --bundle --outdir=./theme/js --out-extension:.js=.min.js", - "development": "run-p development:**", + "development": "run-p \"development:**\"", "dev": "npm run development", "watch:tailwind:frontend": "npm run development:tailwind:frontend -- --watch", "watch:tailwind:editor": "npm run development:tailwind:editor -- --watch", "watch:esbuild": "npm run development:esbuild -- --watch", - "watch": "run-p watch:**", + "watch": "run-p \"watch:**\"", "lint:eslint": "npx eslint theme/", "lint:prettier": "npx prettier --check .", - "lint": "run-p lint:*", + "lint": "run-p \"lint:*\"", "lint-fix:eslint": "npx eslint theme/ --fix", "lint-fix:prettier": "npx prettier --write .", - "lint-fix": "run-p lint-fix:*", + "lint-fix": "run-p \"lint-fix:*\"", "production:tailwind:frontend": "cross-env NODE_ENV=production npm run development:tailwind:frontend -- --minify", "production:tailwind:editor": "cross-env NODE_ENV=production npm run development:tailwind:editor -- --minify", "production:esbuild": "npm run development:esbuild -- --minify", - "production": "run-p production:**", + "production": "run-p \"production:**\"", "prod": "npm run production", "zip": "node node_scripts/zip.js _tw", "bundle": "run-s production zip"