Skip to content

Commit

Permalink
fix: hot reloading issue
Browse files Browse the repository at this point in the history
  • Loading branch information
buttercubz committed Aug 6, 2021
1 parent 511dc93 commit 1b45a73
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion imports/fmt.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as colors from "https://deno.land/std@0.102.0/fmt/colors.ts";
export * as colors from "https://deno.land/std@0.103.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion imports/fs.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.102.0/fs/mod.ts";
export * from "https://deno.land/std@0.103.0/fs/mod.ts";
2 changes: 1 addition & 1 deletion imports/http.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.102.0/http/mod.ts";
export * from "https://deno.land/std@0.103.0/http/mod.ts";
2 changes: 1 addition & 1 deletion imports/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.102.0/path/mod.ts";
export * from "https://deno.land/std@0.103.0/path/mod.ts";
12 changes: 6 additions & 6 deletions install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
*/

// cache in instalation time
import "https://cdn.skypack.dev/[email protected].2/transition";
import "https://cdn.skypack.dev/[email protected].2/internal";
import "https://cdn.skypack.dev/[email protected].2/animate";
import "https://cdn.skypack.dev/[email protected].2/easing";
import "https://cdn.skypack.dev/[email protected].2/motion";
import "https://cdn.skypack.dev/[email protected].2/store";
import "https://cdn.skypack.dev/[email protected].3/transition";
import "https://cdn.skypack.dev/[email protected].3/internal";
import "https://cdn.skypack.dev/[email protected].3/animate";
import "https://cdn.skypack.dev/[email protected].3/easing";
import "https://cdn.skypack.dev/[email protected].3/motion";
import "https://cdn.skypack.dev/[email protected].3/store";

const install = async (name: string, url: string, importmap?: boolean) => {
const process = Deno.run({
Expand Down
2 changes: 1 addition & 1 deletion src/shared/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]";

0 comments on commit 1b45a73

Please sign in to comment.