Skip to content

Commit fdd05c1

Browse files
authored
Merge pull request keichi#124 from keichi/remove-npx
Don't need to use npx in npm-scripts
2 parents 21cb23f + 2cf194a commit fdd05c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"typescript": "^3.5.1"
1212
},
1313
"scripts": {
14-
"build": "npx tsc",
15-
"fmt": "npx prettier --write \"{lib,example,test}/**/*.{ts,js}\"",
16-
"check-fmt": "npx prettier --list-different \"{lib,example,test}/**/*.{ts,js}\"",
17-
"test": "npx mocha",
18-
"test-browser": "npx parcel test/browser.html --open",
19-
"cover": "npx nyc --reporter html mocha",
14+
"build": "tsc",
15+
"fmt": "prettier --write \"{lib,example,test}/**/*.{ts,js}\"",
16+
"check-fmt": "prettier --list-different \"{lib,example,test}/**/*.{ts,js}\"",
17+
"test": "mocha",
18+
"test-browser": "parcel test/browser.html --open",
19+
"cover": "nyc --reporter html mocha",
2020
"prepare": "npm run build"
2121
},
2222
"files": [

0 commit comments

Comments
 (0)