Disable color in esbuild output, since it makes text white in my light-mode terminal -_-
This commit is contained in:
parent
6ea4409d68
commit
56716cf1e5
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
||||||
"tailwindcss": "^3.4.3"
|
"tailwindcss": "^3.4.3"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017",
|
"build": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017 --color=false",
|
||||||
"build-watch": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017 --watch",
|
"build-watch": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017 --watch --color=false",
|
||||||
"css-watch": "tailwindcss -i ./frontend/main.css -o ./static/style.css --watch",
|
"css-watch": "tailwindcss -i ./frontend/main.css -o ./static/style.css --watch",
|
||||||
"css": "tailwindcss -i ./frontend/main.css -o ./static/style.css"
|
"css": "tailwindcss -i ./frontend/main.css -o ./static/style.css"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue