Skip to content

Commit

Permalink
Don't try to fix files concurrently with two different tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilzu committed Jan 11, 2025
1 parent aee9a0b commit b31d729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dev:types": "tsc --watch --noEmit --preserveWatchOutput --pretty",
"docker:build": "docker build --tag PROJECT_NAME .",
"docker:run": "docker run --init --interactive --tty --publish 3000:3000 PROJECT_NAME",
"fix": "concurrently --group node:fix:* node:format",
"fix": "node --run format && node --run fix:lint",
"fix:lint": "eslint --fix .",
"format": "prettier --write .",
"start": "node --import ./dist/setup.js --enable-source-maps .",
Expand Down

0 comments on commit b31d729

Please sign in to comment.