Skip to content

Commit 6e02256

Browse files
committed
chore: use yarn on npm-scripts
1 parent 166a857 commit 6e02256

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"format": "prettier --no-semi --single-quote --write \"**/*.{js,json,md}\"",
2222
"format:check": "prettier --no-semi --single-quote --check \"**/*.{js,json,md}\"",
2323
"lint": "eslint --ignore-path .gitignore \"{,!(node_modules)/**/}*.js\"",
24-
"lint:fix": "npm run lint --fix",
24+
"lint:fix": "yarn lint --fix",
2525
"release": "semantic-release",
26-
"test": "npm run lint && npm run format:check && npm run test:e2e",
26+
"test": "yarn lint && yarn format:check && yarn test:e2e",
2727
"test:e2e": "node e2e/test-runner"
2828
},
2929
"author": "Edd Yerburgh",
@@ -85,7 +85,7 @@
8585
},
8686
"lint-staged": {
8787
"*.{js,json,css,md,vue}": [
88-
"npm run format",
88+
"yarn format",
8989
"git add"
9090
]
9191
}

0 commit comments

Comments
 (0)