Skip to content

Commit

Permalink
fix: do not bundle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard committed May 8, 2024
1 parent afd4ef1 commit 658e08b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "deno.re",
"version": "1.2.0",
"scripts": {
"dev": "npm run build && node --env-file .env build/index.cjs",
"start": "node build/index.cjs",
"build": "astro build && esbuild registry/index.ts --bundle --format=cjs --loader:.html=text --loader:.svg=text --external:esbuild --external:octokit --platform=node --outfile=build/index.cjs",
"pretest": "node build/index.cjs &",
"dev": "npm run build && node --env-file .env build/index.js",
"start": "node build/index.js",
"build": "astro build && esbuild registry/index.ts --bundle --format=esm --loader:.html=text --loader:.svg=text --packages=external --platform=node --outfile=build/index.js",
"pretest": "node build/index.js &",
"test": "node --test",
"posttest": "kill $(lsof -t -i:3000)",
"www": "astro dev"
Expand Down

0 comments on commit 658e08b

Please sign in to comment.