Skip to content

Commit e6b2866

Browse files
committedFeb 8, 2023
separate lint task
1 parent 209dde6 commit e6b2866

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js",
3636
"lint": "eslint src test && publint",
3737
"prepare": "npm run build",
38-
"prepublishOnly": "rm -rf dist && npm test",
38+
"prepublishOnly": "npm run lint && rm -rf dist && npm test",
3939
"release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish",
40-
"pretest": "npm run lint && npm run build",
40+
"pretest": "npm run build",
4141
"test": "mocha",
4242
"bench": "npm run build && node benchmark/index.mjs",
4343
"watch": "rollup -cw"

0 commit comments

Comments
 (0)
Please sign in to comment.