Skip to content

Commit a34d17f

Browse files
committed
Fix package.json preversion command
Currently can't publish versions as I broke the preversion command. Sorry!
1 parent cafd96c commit a34d17f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"main": "src/index.js",
66
"scripts": {
77
"changelog": "lerna-changelog",
8-
"lint": "node_modules/.bin/eslint src test",
9-
"test": "mocha",
10-
"preversion": "npm lint && npm test",
8+
"lint:js": "node_modules/.bin/eslint src test",
9+
"test": "npm run-script lint:js && mocha",
10+
"preversion": "npm test",
1111
"postversion": "git push origin master --tags"
1212
},
1313
"repository": {

0 commit comments

Comments
 (0)