Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Aug 7, 2023
1 parent 2258274 commit 1e6ade8
Show file tree
Hide file tree
Showing 38 changed files with 300 additions and 297 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@



- **(es/ast)** Avoid `transmute` in impl of `Hash` for `Number` (#7771) ([2258274](https://github.com/swc-project/swc/commit/225827423355cab8cd3c0ae80f335cd2873e6cd4))


- **(es/parser)** Do not use `lexical` (#7758) ([e50cfde](https://github.com/swc-project/swc/commit/e50cfde938b2504b723a95f034ac4b388d8725c3))

## [1.3.74] - 2023-08-02
Expand Down
72 changes: 36 additions & 36 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.53.41"
version = "0.53.42"

[lib]
bench = false
Expand Down Expand Up @@ -33,11 +33,11 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.264.41", path = "../swc" }
swc = { optional = true, version = "0.264.42", path = "../swc" }
swc_common = { optional = true, version = "0.31.18", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.107.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.221.22", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.93.2", path = "../swc_ecma_visit" }
swc_ecma_ast = { optional = true, version = "0.107.3", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.221.23", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.93.3", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.71" }
Expand Down
14 changes: 7 additions & 7 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.84.47"
version = "0.84.48"

[[bin]]
bench = false
Expand All @@ -30,13 +30,13 @@ swc_common = { version = "0.31.18", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.107.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.142.6", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.184.33", path = "../swc_ecma_minifier", features = [
swc_ecma_ast = { version = "0.107.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.142.7", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.184.34", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.137.6", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.130.11", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.93.2", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.137.7", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.130.12", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.93.3", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.15.18", path = "../swc_error_reporters" }
swc_timer = { version = "0.19.21", path = "../swc_timer" }
Loading

0 comments on commit 1e6ade8

Please sign in to comment.