Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit e335da5

Browse files
committed
Clean up
1 parent 3d4d860 commit e335da5

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
rust-version: stable
3030

3131
- name: Deno test
32-
run: deno test -A --unstable --location=http://localhost
32+
run: deno test -A --unstable --location=http://localhost --import-map=import_map.json"
3333

3434
- name: Deno lint
3535
run: deno lint

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"deno.enable": true,
1717
"deno.lint": true,
1818
"deno.config": "./deno.dom.json",
19+
"deno.importMap": "./import_map.json",
1920
"deno.suggest.imports.hosts": {
2021
"https://deno.land": true,
2122
"https://esm.sh": false

deno.dom.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"jsx": "react-jsx",
1010
"jsxImportSource": "https://esm.sh/[email protected]"
1111
},
12-
"importMap": "import_map.json",
1312
"fmt": {
1413
"files": {
1514
"exclude": [

deno.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
"jsx": "react-jsx",
44
"jsxImportSource": "https://esm.sh/[email protected]"
55
},
6-
"importMap": "import_map.json",
76
"tasks": {
8-
"test": "deno test -A --unstable --location=http://localhost",
7+
"test": "deno test -A --unstable --location=http://localhost --import-map=import_map.json",
98
"dev": "ALEPH_DEV=true deno run -A cli.ts dev --log-level=debug",
109
"start": "ALEPH_DEV=true deno run -A cli.ts start --log-level=debug",
1110
"build": "ALEPH_DEV=true deno run -A cli.ts build --log-level=debug",

0 commit comments

Comments
 (0)