Skip to content

Commit 9e1495d

Browse files
committed
changes
1 parent 1b54151 commit 9e1495d

File tree

11 files changed

+491
-54
lines changed

11 files changed

+491
-54
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ styles/output.*.css
1919

2020
components/index.tsx
2121

22-
pages/main.*
22+
pages/main.*
23+
24+
node_modules

deno.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
"deploy:dev": "deployctl deploy --project=nikechukwu --entrypoint=out/server.js --include=./out --dry-run",
77
"deploy": "deno task build --single && cd out && deployctl deploy --project=nikechukwu --entrypoint=./server.js --include=./client",
88
"deploy:prod": "deno task build --single && deployctl deploy --project=nikechukwu --entrypoint=out/server.js --include=./out --prod",
9-
"build": "deno run -A internal/commands/build.js",
9+
"build": "deno cache --allow-scripts internal/commands/build.js && deno run -A --node-modules-dir internal/commands/build.js",
1010
"prod": "deno task build && deno run -A ./out/server.js",
11+
"prod:min": "deno task build && deno run -A ./out/server.min.js",
1112
"test": "deno test --allow-read --allow-sys",
1213
"format": "deno fmt .",
1314
"esm:add": "deno run -A https://esm.sh/v135 add",

0 commit comments

Comments
 (0)