Skip to content

Commit

Permalink
fix: CI and bump deps (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen authored Aug 28, 2022
1 parent eff6d5b commit b8bb12d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- "script/build.*"
- "src/ffi.ts"
- "webview/**"
- ".gitmodules"
- "deno.json"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export {
download,
prepare,
} from "https://deno.land/x/[email protected]/plug.ts";
export { join } from "https://deno.land/std@0.145.0/path/mod.ts";
export { join } from "https://deno.land/std@0.153.0/path/mod.ts";
2 changes: 1 addition & 1 deletion examples/multi-window/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { preload } from "../../mod.ts";
await preload();

Expand Down
2 changes: 1 addition & 1 deletion examples/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { Webview } from "../mod.ts";

const controller = new AbortController();
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { dirname, join } from "https://deno.land/std@0.139.0/path/mod.ts";
import { dirname, join } from "https://deno.land/std@0.153.0/path/mod.ts";
import { Webview } from "../../mod.ts";

const worker = new Worker(
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/worker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <reference lib="dom.asynciterable" />
/// <reference lib="deno.ns" />

import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { h, ssr, tw } from "https://crux.land/[email protected]";

const Hello = (props: { name: string }) => (
Expand Down
2 changes: 1 addition & 1 deletion script/build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ensureDir } from "https://deno.land/std@0.145.0/fs/ensure_dir.ts";
import { ensureDir } from "https://deno.land/std@0.153.0/fs/ensure_dir.ts";

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

0 comments on commit b8bb12d

Please sign in to comment.