Skip to content

Commit 32d2f08

Browse files
committed
Remove npx because it created a new issue and solved nothing
1 parent 81dba5d commit 32d2f08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"dev": "npm-run-all snippets:consolidate dev:server",
88
"dev:server": "tsx index.ts",
99
"build": "npm-run-all --parallel snippets:consolidate build:server",
10-
"build:server": "npx tsup index.ts --out-dir dist --format esm",
10+
"build:server": "tsup index.ts --out-dir dist --format esm",
1111
"start": "node dist/index.js",
1212
"lint": "eslint .",
1313
"format": "prettier --write .",
1414
"format:check": "prettier --check .",
15-
"snippets:check": "npx tsx ./scripts/checkSnippetFormatting.ts",
16-
"snippets:consolidate": "npx tsx ./scripts/consolidateSnippets.ts"
15+
"snippets:check": "tsx ./scripts/checkSnippetFormatting.ts",
16+
"snippets:consolidate": "tsx ./scripts/consolidateSnippets.ts"
1717
},
1818
"keywords": [],
1919
"author": "",

0 commit comments

Comments
 (0)