Skip to content

Commit

Permalink
updated lint scripts to match github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
megascatterbomb committed Mar 21, 2024
1 parent c03968c commit b44b7a1
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 @@ -12,8 +12,8 @@
},
"scripts": {
"start": "webpack serve",
"lint": "pnpm exec eslint . && pnpm exec prettier -c \"src/**/*\"",
"lint:fix": "pnpm exec eslint --fix . && pnpm exec prettier --write \"src/**/*\"",
"lint": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint --fix .",
"build": "pnpm run lint && tailwind -i ./src/index.css -o ./src/tailwind.css && webpack --mode production",
"dev": "concurrently -k \"webpack serve --mode development\" \"tailwindcss -i ./src/index.css -o ./src/tailwind.css --watch\" \"tsc -w\"",
"prod": "concurrently -k \"webpack serve --mode production\" \"tailwindcss -i ./src/index.css -o ./src/tailwind.css --watch\" \"tsc -w\""
Expand Down

0 comments on commit b44b7a1

Please sign in to comment.