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 Jan 3, 2024
1 parent 2076ef8 commit cddb016
Show file tree
Hide file tree
Showing 38 changed files with 209 additions and 212 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- **(es/codegen)** Emit abstract keyword ([#8479](https://github.com/swc-project/swc/issues/8479)) ([a12eaae](https://github.com/swc-project/swc/commit/a12eaae0e544d7e485ce7ce11e56591e7ff34108))


- **(es/codegen)** Emit declare keyword for class properties ([#8478](https://github.com/swc-project/swc/issues/8478)) ([2076ef8](https://github.com/swc-project/swc/commit/2076ef8f359941ad511c860000ec3eaa74410cac))


- **(es/compat)** Set inserted var inside export class in destructing ([#8470](https://github.com/swc-project/swc/issues/8470)) ([4416077](https://github.com/swc-project/swc/commit/4416077f4ac1afb74575b9a0e836bb66b8dc8b9a))

### Testing
Expand Down Expand Up @@ -1528,16 +1531,10 @@

- **(es/preset-env)** Fix pass ordering ([#7434](https://github.com/swc-project/swc/issues/7434)) ([2071f89](https://github.com/swc-project/swc/commit/2071f89d4eea7ae311b05457650e2f42c1b503ef))


- **(swc_core)** Correctly expose plugin with host ([#7427](https://github.com/swc-project/swc/issues/7427)) ([558ca40](https://github.com/swc-project/swc/commit/558ca40b99bd3e9ac9a1742223dd9d3ef84061cb))

### Refactor



- **(swc_core)** Make `common_plugin_transform` agnostic to mode ([#7422](https://github.com/swc-project/swc/issues/7422)) ([cfdd407](https://github.com/swc-project/swc/commit/cfdd40789673eef32a9b9365456860a7cb511000))


- **(visit)** Reduce expanded LOCs ([#7442](https://github.com/swc-project/swc/issues/7442)) ([e83368e](https://github.com/swc-project/swc/commit/e83368e5744ebabab8537cb979a374ecbc2e7d95))

<!-- generated by git-cliff -->
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.11"
version = "0.61.12"

[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.12", path = "../swc" }
swc = { optional = true, version = "0.270.13", 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.9", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.227.10", 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.17"
version = "0.90.18"

[[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.49", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.190.10", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.146.50", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.190.11", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.141.34", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.135.6", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "0.135.7", 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" }
Loading

0 comments on commit cddb016

Please sign in to comment.