Skip to content

Commit 19fe8c4

Browse files
authored
Merge pull request #277 from nogic1008/hotfix/npm-scripts
fix: change single-quote to double-quote in npm-scripts
2 parents 340b68e + 6e02256 commit 19fe8c4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"vue jest preprocessor"
1919
],
2020
"scripts": {
21-
"format": "prettier --no-semi --single-quote --write '**/*.{js,json,md}'",
22-
"format:check": "prettier --no-semi --single-quote --check '**/*.{js,json,md}'",
23-
"lint": "eslint --ignore-path .gitignore '{,!(node_modules)/**/}*.js'",
24-
"lint:fix": "npm run lint --fix",
21+
"format": "prettier --no-semi --single-quote --write \"**/*.{js,json,md}\"",
22+
"format:check": "prettier --no-semi --single-quote --check \"**/*.{js,json,md}\"",
23+
"lint": "eslint --ignore-path .gitignore \"{,!(node_modules)/**/}*.js\"",
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)