Skip to content

Commit 14a638b

Browse files
authored
fix: use rust crates to discover config (#15)
1 parent 5d82699 commit 14a638b

13 files changed

Lines changed: 3487 additions & 91 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- name: fmt
2121
run: deno fmt --check
2222

23+
- name: build
24+
run: deno task build
25+
2326
- name: lint
2427
run: deno lint
2528

@@ -36,5 +39,7 @@ jobs:
3639
with:
3740
submodules: true
3841
- uses: denoland/setup-deno@v2
42+
- name: Build
43+
run: deno task build
3944
- name: Publish to JSR on tag
4045
run: deno run -A jsr:@david/publish-on-tag@0.2.0

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77
# MacOS generated files
88
.DS_Store
99
.DS_Store?
10+
node_modules/
11+
/target
12+
13+
/lib

.rustfmt.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
max_width = 80
2+
tab_spaces = 2
3+
edition = "2021"

0 commit comments

Comments
 (0)