Skip to content

Commit

Permalink
chore: update dep and deno
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNoim committed Dec 9, 2023
1 parent f689af1 commit 923a154
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion reactive_home/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ labels:
org.opencontainers.image.source: "https://github.com/TheNoim/reactive-home"
org.opencontainers.image.licenses: "MIT"
args:
DENO_VERSION: "1.35.0"
DENO_VERSION: "1.38.5"
6 changes: 3 additions & 3 deletions reactive_home/loader.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { walk } from "https://deno.land/std@0.193.0/fs/mod.ts";
import { parse } from "https://deno.land/std@0.193.0/flags/mod.ts";
import { basename, join } from "https://deno.land/std@0.193.0/path/mod.ts";
import { walk } from "https://deno.land/std@0.208.0/fs/mod.ts";
import { parse } from "https://deno.land/std@0.208.0/flags/mod.ts";
import { basename, join } from "https://deno.land/std@0.208.0/path/mod.ts";

const flags = parse(Deno.args, {
string: ["root"],
Expand Down
6 changes: 3 additions & 3 deletions reactive_home/run.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { parse } from "https://deno.land/std@0.193.0/flags/mod.ts";
import { basename, dirname } from "https://deno.land/std@0.193.0/path/mod.ts";
import { join } from "https://deno.land/std@0.193.0/path/mod.ts";
import { parse } from "https://deno.land/std@0.208.0/flags/mod.ts";
import { basename, dirname } from "https://deno.land/std@0.208.0/path/mod.ts";
import { join } from "https://deno.land/std@0.208.0/path/mod.ts";

const flags = parse(Deno.args, {
string: ["root"],
Expand Down
3 changes: 1 addition & 2 deletions reactive_home/src/define-window.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// @ts-expect-error
globalThis.window = globalThis;
globalThis.window = globalThis;
14 changes: 7 additions & 7 deletions reactive_home/src/dep.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import './define-window.ts';
import "./define-window.ts";

export * from "https://esm.noim.io/home-assistant-js-websocket@8.1.0";
export * from "https://esm.noim.io/home-assistant-js-websocket@9.1.0";

export {
computed,
Expand All @@ -10,13 +10,13 @@ export {
unref,
getCurrentScope,
onScopeDispose,
} from "https://esm.noim.io/@vue/[email protected].4";
} from "https://esm.noim.io/@vue/[email protected].11";

export type {
Ref,
UnwrapNestedRefs,
ComputedRef,
} from "https://esm.noim.io/@vue/[email protected].4";
} from "https://esm.noim.io/@vue/[email protected].11";

export { useNow } from "./composeables/useNow.ts";

Expand All @@ -27,9 +27,9 @@ export {
watchDebounced,
useDebounceFn,
watchPausable,
} from "https://esm.noim.io/@vueuse/core@10.2.1?deps=@vue/[email protected].4&externals=@vue/runtime-dom";
} from "https://esm.noim.io/@vueuse/core@10.7.0?deps=@vue/[email protected].11&externals=@vue/runtime-dom";

export { watch } from "https://esm.noim.io/@vue/[email protected].4";
export { watch } from "https://esm.noim.io/@vue/[email protected].11";

export { config as dotenvConfig } from "https://deno.land/x/[email protected]/mod.ts";

Expand All @@ -48,6 +48,6 @@ import SunCalc from "https://esm.noim.io/[email protected]";

import parse from "https://esm.noim.io/[email protected]";

export { join } from "https://deno.land/std@0.193.0/path/mod.ts";
export { join } from "https://deno.land/std@0.208.0/path/mod.ts";

export { SunCalc, parse as parseDuration };

0 comments on commit 923a154

Please sign in to comment.