Skip to content

Commit e00ae34

Browse files
committed
make sure there is a lint script in all packages
1 parent f7dd75d commit e00ae34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/fastboot-express-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"author": "Tom Dale <[email protected]>",
2121
"main": "src/index.js",
2222
"scripts": {
23-
"lint:js": "eslint --cache .",
23+
"lint": "eslint --cache .",
2424
"test": "yarn lint:js && mocha"
2525
},
2626
"dependencies": {

packages/fastboot/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
],
2323
"scripts": {
2424
"changelog": "lerna-changelog",
25-
"lint:js": "eslint --cache .",
26-
"test": "npm run-script lint:js && mocha",
25+
"lint": "eslint --cache .",
26+
"test": "mocha",
2727
"preversion": "npm test",
2828
"postversion": "git push origin master --tags"
2929
},

0 commit comments

Comments
 (0)