Skip to content

Commit

Permalink
fix(website): import map deps for deno deploy (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeidx authored Sep 18, 2024
1 parent e5e505f commit e079de0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"tasks": {
"cache": "deno cache -r cli.ts console/mod.ts error/mod.ts http/mod.ts",
"check": "deno check -r cli.ts console/mod.ts error/mod.ts http/mod.ts",
"cache": "deno cache -r cli.ts console/mod.ts error/mod.ts http/mod.ts website/main.ts",
"check": "deno check -r cli.ts console/mod.ts error/mod.ts http/mod.ts website/main.ts",
"test": "deno test -A --no-check --coverage=./cov"
},
"workspace": [
Expand Down
10 changes: 9 additions & 1 deletion deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions website/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"tasks": {
"dev": "deno run -A --watch ./main.ts"
},
"imports": {
"@std/http": "jsr:@std/http@^1.0.4",
"@std/log": "jsr:@std/log@^0.224.6"
}
}

0 comments on commit e079de0

Please sign in to comment.