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 Dec 17, 2023
1 parent 7566ddf commit 45f62f7
Show file tree
Hide file tree
Showing 38 changed files with 209 additions and 209 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@
- **(es/codegen)** Emit extra paren emitting `AssignExpr` ([#8413](https://github.com/swc-project/swc/issues/8413)) ([dce3693](https://github.com/swc-project/swc/commit/dce369336d873a920a9c6bd56f03286a3487ae26))


- **(es/codegen)** Fix codegen of ts specific syntax in class props ([#8426](https://github.com/swc-project/swc/issues/8426)) ([7566ddf](https://github.com/swc-project/swc/commit/7566ddf0b7802650f0f25ca7f7c607f58faa4972))


- **(es/compat)** Mark reserved function names private ([#7298](https://github.com/swc-project/swc/issues/7298)) ([dba78a0](https://github.com/swc-project/swc/commit/dba78a0031b97a4c152b506ae2072438cdba92b2))


Expand Down Expand Up @@ -257,9 +260,6 @@
- **(es/lints)** Ignore ambient context binding ([#8368](https://github.com/swc-project/swc/issues/8368)) ([83c8fe5](https://github.com/swc-project/swc/commit/83c8fe56f06eec5f84b87d945262b8be119b827b))


- **(es/minifier)** Fix remapping of vars upon inlining ([#7362](https://github.com/swc-project/swc/issues/7362)) ([1dced17](https://github.com/swc-project/swc/commit/1dced17998a625e30d4a8ef653aef9e2caa7627d))


- **(es/minifier)** Mark all function params as potential property mutation ([#7409](https://github.com/swc-project/swc/issues/7409)) ([5dbbbea](https://github.com/swc-project/swc/commit/5dbbbea2efb84e7f187859ba03fd548af92c613f))


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.

6 changes: 3 additions & 3 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.61.0"
version = "0.61.1"

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

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.270.0", path = "../swc" }
swc = { optional = true, version = "0.270.1", path = "../swc" }
swc_common = { optional = true, version = "0.33.12", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.227.0", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.227.1", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.96.15", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
8 changes: 4 additions & 4 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.90.2"
version = "0.90.3"

[[bin]]
bench = false
Expand All @@ -31,12 +31,12 @@ swc_common = { version = "0.33.12", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.44", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.190.0", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.146.45", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.190.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.135.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "0.135.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.96.15", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.12", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.14", path = "../swc_timer" }

0 comments on commit 45f62f7

Please sign in to comment.