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 Mar 21, 2023
1 parent 6a570a3 commit 212af9b
Show file tree
Hide file tree
Showing 38 changed files with 298 additions and 295 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,9 @@
- **(bindings/node)** Fix loading of `spack.config.js` (#7105) ([a4d1af1](https://github.com/swc-project/swc/commit/a4d1af18deabe79caa959eb654ca1ebc2d9f6867))


- **(es/ast)** Fix `EqIgnoreSpan` impl of `Number` (#7112) ([6a570a3](https://github.com/swc-project/swc/commit/6a570a334c787358d67ae6c590a7fd0e916f35e8))


- **(es/minifier)** Pass `keep_*` in config to `compress` and `mangle` (#7102) ([6a1201c](https://github.com/swc-project/swc/commit/6a1201cfc44fe5ae3d8599669fd8032c82e6c580))


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
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.44.15"
version = "0.44.16"

[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.255.15", path = "../swc" }
swc = { optional = true, version = "0.255.16", path = "../swc" }
swc_common = { optional = true, version = "0.29.37", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.100.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.212.11", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.86.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { optional = true, version = "0.100.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.212.12", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.86.2", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.58" }
Expand Down
14 changes: 7 additions & 7 deletions crates/dbg-swc/Cargo.toml
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.75.17"
version = "0.75.18"

[[bin]]
bench = false
Expand All @@ -25,14 +25,14 @@ swc_common = { version = "0.29.37", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.100.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.135.5", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.12", path = "../swc_ecma_minifier", features = [
swc_ecma_ast = { version = "0.100.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.135.6", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.13", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.130.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.9", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.1", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.130.5", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.10", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.2", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.38", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.40", path = "../swc_timer" }
tempfile = "3.4.0"
Expand Down

0 comments on commit 212af9b

Please sign in to comment.