From f76bfbbe33c4e8e6ac8da9dccd29bd522d9b7e6f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 29 Aug 2023 15:58:56 -0400 Subject: refactor(init): simplify template (#20325) - Don't include benchmark file - most people won't need this. - Use deno.json instead of deno.jsonc, because it's a more common file format. --- cli/tools/init/templates/deno.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cli/tools/init/templates/deno.json (limited to 'cli/tools/init/templates/deno.json') diff --git a/cli/tools/init/templates/deno.json b/cli/tools/init/templates/deno.json new file mode 100644 index 000000000..3c5130f1d --- /dev/null +++ b/cli/tools/init/templates/deno.json @@ -0,0 +1,5 @@ +{ + "tasks": { + "dev": "deno run --watch main.ts" + } +} -- cgit v1.2.3