From c3b3d46d9d95a1368d98540fd0b7184f1745f2f4 Mon Sep 17 00:00:00 2001 From: Anh Hong Date: Mon, 7 Dec 2020 19:47:05 +0700 Subject: [PATCH] fix: add version for schema in `script.json` Fixed #98 --- src/templates.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates.ts b/src/templates.ts index ffda87e..fe07a16 100644 --- a/src/templates.ts +++ b/src/templates.ts @@ -12,7 +12,7 @@ export interface Template { const json: Template = { filename: "scripts.json", source: String.raw`{ - "$schema": "https://deno.land/x/denon/schema.json", + "$schema": "https://deno.land/x/denon@${VERSION}/schema.json", "scripts": { "start": { "cmd": "deno run app.ts",