Skip to content

Commit 14e2d5d

Browse files
committed
fix: makefile and fmt
1 parent 6736a52 commit 14e2d5d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ build:
22
cargo build
33

44
example:
5-
DEV=true deno run \
5+
PLUGIN_URL=target/debug/ deno run \
66
-A \
77
--unstable \
88
--no-check \
@@ -16,5 +16,3 @@ fmt:
1616
lint:
1717
cargo clippy
1818
deno lint --ignore=target/
19-
20-

deps.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
export { CachePolicy, prepare, download } from "https://deno.land/x/plug@0.5.1/plug.ts";
1+
export {
2+
CachePolicy,
3+
download,
4+
prepare,
5+
} from "https://deno.land/x/plug@0.5.1/plug.ts";

examples/server.ts

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

4-
const server = serve(() =>
4+
const _server = serve(() =>
55
new Response("<h1>Hello World</h1>", {
66
headers: new Headers({
77
"content-type": "text/html",

0 commit comments

Comments
 (0)