From 1b45a732e0c6194bdce27643c6ea78cfe5101530 Mon Sep 17 00:00:00 2001 From: buttercubz Date: Fri, 6 Aug 2021 15:25:24 -0400 Subject: [PATCH] fix: hot reloading issue --- imports/fmt.ts | 2 +- imports/fs.ts | 2 +- imports/http.ts | 2 +- imports/path.ts | 2 +- install.ts | 12 ++++++------ src/shared/version.ts | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/imports/fmt.ts b/imports/fmt.ts index 217c9f8..be0bc45 100644 --- a/imports/fmt.ts +++ b/imports/fmt.ts @@ -1 +1 @@ -export * as colors from "https://deno.land/std@0.102.0/fmt/colors.ts"; \ No newline at end of file +export * as colors from "https://deno.land/std@0.103.0/fmt/colors.ts"; \ No newline at end of file diff --git a/imports/fs.ts b/imports/fs.ts index 8ecf4b4..465996d 100644 --- a/imports/fs.ts +++ b/imports/fs.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.102.0/fs/mod.ts"; \ No newline at end of file +export * from "https://deno.land/std@0.103.0/fs/mod.ts"; \ No newline at end of file diff --git a/imports/http.ts b/imports/http.ts index 94207d3..e8a3e6d 100644 --- a/imports/http.ts +++ b/imports/http.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.102.0/http/mod.ts"; \ No newline at end of file +export * from "https://deno.land/std@0.103.0/http/mod.ts"; \ No newline at end of file diff --git a/imports/path.ts b/imports/path.ts index 345022e..d38ac9e 100644 --- a/imports/path.ts +++ b/imports/path.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.102.0/path/mod.ts"; \ No newline at end of file +export * from "https://deno.land/std@0.103.0/path/mod.ts"; \ No newline at end of file diff --git a/install.ts b/install.ts index 37b4e15..06f076e 100644 --- a/install.ts +++ b/install.ts @@ -7,12 +7,12 @@ */ // cache in instalation time -import "https://cdn.skypack.dev/svelte@3.38.2/transition"; -import "https://cdn.skypack.dev/svelte@3.38.2/internal"; -import "https://cdn.skypack.dev/svelte@3.38.2/animate"; -import "https://cdn.skypack.dev/svelte@3.38.2/easing"; -import "https://cdn.skypack.dev/svelte@3.38.2/motion"; -import "https://cdn.skypack.dev/svelte@3.38.2/store"; +import "https://cdn.skypack.dev/svelte@3.38.3/transition"; +import "https://cdn.skypack.dev/svelte@3.38.3/internal"; +import "https://cdn.skypack.dev/svelte@3.38.3/animate"; +import "https://cdn.skypack.dev/svelte@3.38.3/easing"; +import "https://cdn.skypack.dev/svelte@3.38.3/motion"; +import "https://cdn.skypack.dev/svelte@3.38.3/store"; const install = async (name: string, url: string, importmap?: boolean) => { const process = Deno.run({ diff --git a/src/shared/version.ts b/src/shared/version.ts index c53dada..785a534 100644 --- a/src/shared/version.ts +++ b/src/shared/version.ts @@ -6,6 +6,6 @@ * */ -export const VERSION = "0.5.6"; +export const VERSION = "0.5.7"; export const URL_SVELTE_CDN = "https://cdn.skypack.dev/svelte@3.38.3";