Skip to content

Commit 70ac12e

Browse files
committed
Remove unneeded npx prefixes in package scripts
1 parent b0ecddc commit 70ac12e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"npm": ">= 9.0.0"
1010
},
1111
"scripts": {
12-
"lint": "npx eslint './js/**/*.js'",
13-
"lint:fix": "npx eslint --fix './js/**/*.js'",
14-
"test": "npx karma start ./karma.conf.js --single-run",
12+
"lint": "eslint './js/**/*.js'",
13+
"lint:fix": "eslint --fix './js/**/*.js'",
14+
"test": "karma start ./karma.conf.js --single-run",
1515
"build:watch": "npm run build --watch",
1616
"build": "node build/build.js"
1717
},

0 commit comments

Comments
 (0)