Skip to content

Commit 7c6dbbd

Browse files
committed
[meta] improve prelint script when no .git dir is present
1 parent 64677e0 commit 7c6dbbd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
"scripts": {
4747
"prepublishOnly": "safe-publish-latest",
4848
"prepublish": "!(type not-in-publish) || not-in-publish || npm run prepublishOnly",
49-
"prelint": "eclint check $(git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js')",
49+
"prelint:files": "git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js'",
50+
"prelint": "FILES=\"$(npm run --silent prelint:files)\" eclint check \"${FILES:=package.json}\"",
5051
"lint": "eslint --ext .js,.cjs,.mjs . bin/*",
5152
"pretest": "npm run lint",
5253
"test": "npm run tests-only",

0 commit comments

Comments
 (0)