Skip to content

Commit

Permalink
Fix Yarn issue (#77)
Browse files Browse the repository at this point in the history
With thanks to @scheinercc
  • Loading branch information
gregsullivan committed Nov 16, 2023
1 parent 5bc018f commit 8e9f431
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8e9f431

Please sign in to comment.