Skip to content

Commit acf5748

Browse files
authored
feat: upgrade to deno_ast 0.16 (#254)
1 parent d3ebb8a commit acf5748

File tree

9 files changed

+223
-330
lines changed

9 files changed

+223
-330
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ jobs:
4242
cargo fmt -- --check
4343
deno fmt --check *.ts *.md lib
4444
45+
- name: Lint
46+
run: |
47+
cargo clippy --all-targets --all-features --release --locked -- -D clippy::all
48+
deno lint *.ts lib
49+
4550
- name: Build
4651
run: cargo build --locked --release --all-targets --all-features
4752

@@ -50,10 +55,9 @@ jobs:
5055
cargo test --locked --release --all-targets --all-features
5156
deno test --allow-read --allow-net
5257
53-
- name: Lint
54-
run: |
55-
cargo clippy --all-targets --all-features --release --locked -- -D clippy::all
56-
deno lint *.ts lib
58+
- name: Ensure Wasm up to date
59+
if: contains(matrix.os, 'ubuntu')
60+
run: deno task build --check
5761

5862
- name: Publish
5963
if: |

Cargo.lock

Lines changed: 44 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno_doc"
3-
version = "0.35.0"
3+
version = "0.36.0"
44
edition = "2021"
55
description = "doc generation for deno"
66
authors = ["the Deno authors"]
@@ -16,17 +16,17 @@ name = "ddoc"
1616
[dependencies]
1717
anyhow = { version = "1.0.43", optional = true }
1818
cfg-if = "1.0.0"
19-
deno_ast = "0.15.0"
20-
deno_graph = "0.27.0"
19+
deno_ast = "0.16.0"
20+
deno_graph = "0.28.0"
2121
futures = "0.3.17"
22-
js-sys = { version = "0.3.55", optional = true }
22+
js-sys = { version = "0.3.58", optional = true }
2323
lazy_static = "1.4.0"
2424
regex = "1.5.4"
2525
serde = { version = "1.0.130", features = ["derive"] }
2626
serde_json = { version = "1.0.67", features = [ "preserve_order" ] }
2727
termcolor = "1.1.2"
28-
wasm-bindgen = { version = "0.2.79", features = ["serde-serialize"], optional = true }
29-
wasm-bindgen-futures = { version = "0.4.28", optional = true }
28+
wasm-bindgen = { version = "0.2.81", features = ["serde-serialize"], optional = true }
29+
wasm-bindgen-futures = { version = "0.4.31", optional = true }
3030
console_error_panic_hook = { version = "0.1.6", optional = true }
3131

3232
[dev-dependencies]

0 commit comments

Comments
 (0)