Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 9, 2023
1 parent 3654cc8 commit 80c7d62
Show file tree
Hide file tree
Showing 11 changed files with 706 additions and 691 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt --check && cargo clippy --examples --tests --benches --all-features
- run: cargo fmt --check && cargo clippy --all --all-features
- run: cargo test --all-features
coverage:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
env_logger = "0.10"
criterion = "0.5"
pretty_assertions = "1"
swc_core = { version = "0.79.0", features = [
swc_core = { version = "0.83.0", features = [
"ecma_ast",
"ecma_visit",
"ecma_parser",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ The following bash scripts are useful when working on this project:
```
* lint:
```sh
cargo fmt --check && cargo clippy --examples --tests --benches
cargo fmt --check && cargo clippy --all --all-features
```
* test:
```sh
Expand Down
4 changes: 2 additions & 2 deletions src/construct/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,8 @@ fn exit_containers(tokenizer: &mut Tokenizer, phase: &Phase) -> Result<(), Strin
- (if *phase == Phase::After { 2 } else { 1 });
let mut exits = Vec::with_capacity(stack_close.len());

while !stack_close.is_empty() {
let container = stack_close.pop().unwrap();
while let Some(container) = stack_close.pop() {

let name = match container.kind {
Container::BlockQuote => Name::BlockQuote,
Container::GfmFootnoteDefinition => Name::GfmFootnoteDefinition,
Expand Down
Loading

0 comments on commit 80c7d62

Please sign in to comment.