Skip to content

Commit ef9e02c

Browse files
Simplify Scripts
Since the run-script system runs the scripts with node awareness, remove the NPX prefixes since they are not necessary.
1 parent cc484b6 commit ef9e02c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"type": "module",
77
"scripts": {
88
"start": "node ./bin/index.mjs",
9-
"build": "npx tsc",
10-
"build:prod": "npx tsc --sourceMap false",
11-
"test": "npx mocha",
12-
"lint": "npx eslint ./"
9+
"build": "tsc",
10+
"build:prod": "tsc --sourceMap false",
11+
"test": "mocha",
12+
"lint": "eslint ./"
1313
},
1414
"keywords": [
1515
"Object ID",

0 commit comments

Comments
 (0)