Skip to content

Commit

Permalink
disable package bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyrenth authored Sep 8, 2024
1 parent 91b062e commit 242ad13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"type": "module",
"scripts": {
"lint": "tsc",
"build": "esbuild src/index.ts --outfile=dist/index.js --format=esm --bundle --platform=node --sourcemap",
"build": "esbuild src/index.ts --outfile=dist/index.js --format=esm --bundle --packages=external --platform=node --sourcemap",
"start": "node dist/index.js",
"prod": "node scripts/run.js lint build start",
"dev:lint": "tsc --watch --preserveWatchOutput",
"dev:start": "node --watch dist/index.js",
"dev:build": "esbuild src/index.ts --outfile=dist/index.js --format=esm --bundle --platform=node --sourcemap --watch",
"dev:build": "esbuild src/index.ts --outfile=dist/index.js --format=esm --bundle --packages=external --platform=node --sourcemap --watch",
"dev": "node scripts/run.js dev:lint dev:start dev:build",
"cleanup": "node scripts/cleanup.js dist",
"prepare": "husky",
Expand Down

0 comments on commit 242ad13

Please sign in to comment.