Skip to content

Commit b8bb12d

Browse files
fix: CI and bump deps (#139)
1 parent eff6d5b commit b8bb12d

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
- "script/build.*"
1010
- "src/ffi.ts"
1111
- "webview/**"
12+
- ".gitmodules"
13+
- "deno.json"
1214

1315
jobs:
1416
build:

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export {
33
download,
44
prepare,
55
} from "https://deno.land/x/plug@0.5.2/plug.ts";
6-
export { join } from "https://deno.land/std@0.145.0/path/mod.ts";
6+
export { join } from "https://deno.land/std@0.153.0/path/mod.ts";

examples/multi-window/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
1+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
22
import { preload } from "../../mod.ts";
33
await preload();
44

examples/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
1+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
22
import { Webview } from "../mod.ts";
33

44
const controller = new AbortController();

examples/ssr/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { dirname, join } from "https://deno.land/std@0.139.0/path/mod.ts";
1+
import { dirname, join } from "https://deno.land/std@0.153.0/path/mod.ts";
22
import { Webview } from "../../mod.ts";
33

44
const worker = new Worker(

examples/ssr/worker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// <reference lib="dom.asynciterable" />
55
/// <reference lib="deno.ns" />
66

7-
import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
7+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
88
import { h, ssr, tw } from "https://crux.land/nanossr@0.0.1";
99

1010
const Hello = (props: { name: string }) => (

script/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ensureDir } from "https://deno.land/std@0.145.0/fs/ensure_dir.ts";
1+
import { ensureDir } from "https://deno.land/std@0.153.0/fs/ensure_dir.ts";
22

33
const decoder = new TextDecoder();
44
const architectures = [["x86_64", "x86_64"], ["aarch64", "arm64"]] as const;

0 commit comments

Comments
 (0)