Skip to content

Commit

Permalink
fix: deno_ast 0.42 (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Aug 30, 2024
1 parent b6612a6 commit e31f285
Show file tree
Hide file tree
Showing 8 changed files with 799 additions and 1,063 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
cargo fmt -- --check
deno fmt --check
- name: Build (Wasm)
run: deno task build

- name: Lint
if: contains(matrix.os, 'ubuntu')
run: |
cargo clippy --all-targets --locked -- -D clippy::all
deno lint
Expand All @@ -59,8 +63,8 @@ jobs:
deno task tailwind
git diff --exit-code
- name: Build
run: deno task build && cargo build --locked --all-targets
- name: Build (Rust)
run: cargo build --locked --all-targets

- name: Test (no highlighter)
run: |
Expand Down
59 changes: 30 additions & 29 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository = "https://github.com/denoland/deno_doc"
members = ["lib"]

[workspace.dependencies]
deno_graph = { version = "0.81.0", default-features = false, features = ["symbols"] }
deno_ast = { version = "0.41.2" }
deno_graph = { version = "0.82.0", default-features = false, features = ["symbols"] }
deno_ast = { version = "0.42.0" }
import_map = "0.20.0"
serde = { version = "1.0.204", features = ["derive"] }

Expand Down
1 change: 1 addition & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"gen_html": "deno task tailwind && cargo run --example ddoc --features=html -- --name \"std HTTP and Assert\" --html ../deno_std/http/mod.ts ../deno_std/assert/mod.ts ../deno_std/collections/mod.ts --output generated_docs/ --main_entrypoint ../deno_std/assert/mod.ts",
"test:update": "UPDATE=1 cargo test --locked --all-targets && UPDATE=1 cargo test --locked --all-targets --features=tree-sitter && UPDATE=1 cargo test --locked --all-targets --features=syntect && cargo insta test --review"
},
"workspace": ["js"],
"exclude": [
"target",
"benches/fixtures"
Expand Down
Loading

0 comments on commit e31f285

Please sign in to comment.