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 10, 2023
1 parent 019cf37 commit 478b1fe
Show file tree
Hide file tree
Showing 38 changed files with 298 additions and 295 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

- **(es/minifier)** Handle boolean in `Evaluator` (#6756) ([8a6a1cb](https://github.com/swc-project/swc/commit/8a6a1cbcf1279b805e740f4d77ebb9fb72d52d41))


- **(es/typescript)** Support const modifier on type parameters (#6672) ([019cf37](https://github.com/swc-project/swc/commit/019cf371994b87a92fd26fc623959a797f35991b))

### Miscellaneous Tasks


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.28.1"
version = "0.29.0"

[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.239.1", path = "../swc" }
swc = { optional = true, version = "0.240.0", path = "../swc" }
swc_common = { optional = true, version = "0.29.27", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.11", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.27", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.81.11", path = "../swc_ecma_visit" }
swc_ecma_ast = { optional = true, version = "0.96.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.200.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.82.0", 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
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.60.33"
version = "0.61.0"

[[bin]]
bench = false
Expand All @@ -25,14 +25,14 @@ swc_common = { version = "0.29.27", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.95.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.18", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.38", path = "../swc_ecma_minifier", features = [
swc_ecma_ast = { version = "0.96.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.129.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.161.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.123.16", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.24", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.81.11", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.124.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.113.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.82.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.28", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.29", path = "../swc_timer" }
tempdir = "0.3.7"
Expand Down

0 comments on commit 478b1fe

Please sign in to comment.