Skip to content

Commit

Permalink
fix(lint): add lint to test command
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Nov 15, 2024
1 parent 804a240 commit 48f5001
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 @@ -59,8 +59,8 @@
"build:es": "esbuild ./src/start.ts --bundle --platform=node --outfile=lib/start.cjs --minify --tree-shaking=true --sourcemap=inline",
"build:clean": "rimraf lib",
"build": "npm-run-all build:clean build:es",
"test": "c8 --reporter=text npm run mocha",
"mocha": "cross-env NODE_ENV=test node_modules/.bin/mocha --full-trace --exit --timeout 30000 -r dotenv/config",
"test": "npm-run-all lint mocha",
"mocha": "c8 --reporter=text cross-env NODE_ENV=test node_modules/.bin/mocha --full-trace --exit --timeout 30000 -r dotenv/config",
"lcov-report": "c8 report --reporter=lcov",
"prepare": "node -e \"try { require('husky').install() } catch (e) {}\""
},
Expand Down

0 comments on commit 48f5001

Please sign in to comment.