Skip to content

Commit

Permalink
Fix serde, change BlockQuote -> Blockquote
Browse files Browse the repository at this point in the history
Closes GH-72.
Closes GH-74.
Closes GH-135.
  • Loading branch information
h7kanna authored Sep 17, 2024
1 parent af3ebbc commit fa8f906
Show file tree
Hide file tree
Showing 7 changed files with 180 additions and 186 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- run: cargo install cargo-tarpaulin && cargo tarpaulin --out xml
- run: cargo install cargo-tarpaulin && cargo tarpaulin --features json --out xml
- uses: codecov/codecov-action@v4
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ serde = { version = "1", features = ["derive"], optional = true }
env_logger = "0.11"
criterion = "0.5"
pretty_assertions = "1"
serde_json = { version = "1" }
swc_core = { version = "0.100", features = [
"ecma_ast",
"ecma_visit",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,15 @@ The following bash scripts are useful when working on this project:
```
* format:
```sh
cargo fmt && cargo fix --all-targets
cargo fmt && cargo fix --all-targets --all-features
```
* lint:
```sh
cargo fmt --check && cargo clippy --examples --tests --benches --all-features
cargo fmt --check && cargo clippy --examples --tests --benches --all-features --all-features
```
* test:
```sh
RUST_BACKTRACE=1 cargo test
RUST_BACKTRACE=1 cargo test --all-features
```
* docs:
```sh
Expand Down
Loading

0 comments on commit fa8f906

Please sign in to comment.