Skip to content

Commit

Permalink
fix: makefile and fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Jan 26, 2022
1 parent 6736a52 commit 14e2d5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build:
cargo build

example:
DEV=true deno run \
PLUGIN_URL=target/debug/ deno run \
-A \
--unstable \
--no-check \
Expand All @@ -16,5 +16,3 @@ fmt:
lint:
cargo clippy
deno lint --ignore=target/


6 changes: 5 additions & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export { CachePolicy, prepare, download } from "https://deno.land/x/plug@0.5.1/plug.ts";
export {
CachePolicy,
download,
prepare,
} from "https://deno.land/x/plug@0.5.1/plug.ts";
2 changes: 1 addition & 1 deletion examples/server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { serve } from "https://deno.land/std@0.120.0/http/mod.ts";
import { Webview } from "../mod.ts";

const server = serve(() =>
const _server = serve(() =>
new Response("<h1>Hello World</h1>", {
headers: new Headers({
"content-type": "text/html",
Expand Down

0 comments on commit 14e2d5d

Please sign in to comment.