Skip to content

Commit ce7316b

Browse files
committed
chore(scripts): fix globbing
1 parent ce77109 commit ce7316b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"lint": "eslint src test --cache",
99
"lint:fix": "eslint --fix src test --cache",
1010
"lint:watch": "esw --watch src test --cache",
11-
"prettier": "prettier --write *.json *.md *.js src/**/*.js test/**/*.js",
12-
"prettier:check": "prettier --list-different *.json *.md *.js src/**/*.js test/**/*.js",
11+
"prettier": "prettier --write *.json *.md *.js src/**.js test/**.js",
12+
"prettier:check": "prettier --list-different *.json *.md *.js src/**.js test/**.js",
1313
"flow": "flow",
1414
"flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done",
1515
"flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore es/ --ignore node_modules/ --watch .flowconfig --watch src/ --watch test/",
@@ -47,7 +47,7 @@
4747
"trailingComma": "es5"
4848
},
4949
"config": {
50-
"mocha": "-r @babel/register test/configure.js test/**/*.js",
50+
"mocha": "-r @babel/register test/configure.js test/**.js",
5151
"commitizen": {
5252
"path": "cz-conventional-changelog"
5353
}

0 commit comments

Comments
 (0)