Loading CHANGES.md +1 −0 Original line number Diff line number Diff line Loading @@ -60,6 +60,7 @@ To be released. - Now a scaffold project uses a [x-forwarded-fetch] middleware to support `X-Forwarded-Proto` and `X-Forwarded-Host` headers. - Now a scaffold project has hot reloading by default. - Now a scaffold project has logging configuration using the [LogTape] library. Loading cli/init.ts +10 −0 Original line number Diff line number Diff line Loading @@ -248,6 +248,11 @@ Deno.serve( }, tasks: { "dev": runtime === "deno" ? "deno run -A --watch ./src/index.ts" : runtime === "bun" ? "bun run --hot ./src/index.ts" : "tsx watch ./src/index.ts", "prod": runtime === "deno" ? "deno run -A ./src/index.ts" : runtime === "bun" ? "bun run ./src/index.ts" Loading Loading @@ -594,6 +599,11 @@ Deno.serve( }, tasks: { "dev": runtime === "deno" ? "deno run -A --watch ./main.ts" : runtime === "bun" ? "bun run --hot ./main.ts" : "tsx watch ./main.ts", "prod": runtime === "deno" ? "deno run -A ./main.ts" : runtime === "bun" ? "bun run ./main.ts" Loading Loading
CHANGES.md +1 −0 Original line number Diff line number Diff line Loading @@ -60,6 +60,7 @@ To be released. - Now a scaffold project uses a [x-forwarded-fetch] middleware to support `X-Forwarded-Proto` and `X-Forwarded-Host` headers. - Now a scaffold project has hot reloading by default. - Now a scaffold project has logging configuration using the [LogTape] library. Loading
cli/init.ts +10 −0 Original line number Diff line number Diff line Loading @@ -248,6 +248,11 @@ Deno.serve( }, tasks: { "dev": runtime === "deno" ? "deno run -A --watch ./src/index.ts" : runtime === "bun" ? "bun run --hot ./src/index.ts" : "tsx watch ./src/index.ts", "prod": runtime === "deno" ? "deno run -A ./src/index.ts" : runtime === "bun" ? "bun run ./src/index.ts" Loading Loading @@ -594,6 +599,11 @@ Deno.serve( }, tasks: { "dev": runtime === "deno" ? "deno run -A --watch ./main.ts" : runtime === "bun" ? "bun run --hot ./main.ts" : "tsx watch ./main.ts", "prod": runtime === "deno" ? "deno run -A ./main.ts" : runtime === "bun" ? "bun run ./main.ts" Loading