Skip to content

Commit

Permalink
Do not minify on watch
Browse files Browse the repository at this point in the history
  • Loading branch information
molnard1 authored Nov 8, 2023
1 parent dc1de69 commit b8e4967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"main": "index.js",
"scripts": {
"build:esbuild": "esbuild src/js/index.js --bundle --minify --loader:.js=jsx --format=cjs --outfile=public/dist/bundle.js",
"watch:esbuild": "esbuild src/js/index.js --bundle --minify --loader:.js=jsx --format=cjs --outfile=public/dist/bundle.js --watch",
"watch:esbuild": "esbuild src/js/index.js --bundle --loader:.js=jsx --format=cjs --outfile=public/dist/bundle.js --watch",
"build:css": "npx tailwindcss -i src/css/style.css -o public/dist/bundle.css --minify",
"watch:css": "npx tailwindcss -i src/css/style.css -o public/dist/bundle.css --minify --watch",
"watch:css": "npx tailwindcss -i src/css/style.css -o public/dist/bundle.css --watch",
"serve": "serve public/",
"open": "opener http://localhost:3000",
"build": "concurrently --kill-others-on-fail npm:build:esbuild npm:build:css",
Expand Down

0 comments on commit b8e4967

Please sign in to comment.