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 Apr 29, 2023
1 parent 985f0ca commit 767284e
Show file tree
Hide file tree
Showing 35 changed files with 224 additions and 221 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
- **(es/codegen)** Emit type arguments for call expressions (#7335) ([7e99e5f](https://github.com/swc-project/swc/commit/7e99e5fd2c3d15aba6bf29958bd9305e29312e6a))


- **(es/parser)** Parse decorators after `export` (#7340) ([985f0ca](https://github.com/swc-project/swc/commit/985f0cad06b9de5f9e98bed3ad62769e0f3c7528))


- **(plugin/runner)** Revert #7341 (#7344) ([d6999ba](https://github.com/swc-project/swc/commit/d6999ba1ac454a1617bab00c740d99f81ff1a18d))

### Features
Expand Down
66 changes: 33 additions & 33 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.49.39"
version = "0.49.40"

[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.260.39", path = "../swc" }
swc = { optional = true, version = "0.260.40", path = "../swc" }
swc_common = { optional = true, version = "0.31.5", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.103.5", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.217.25", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.217.26", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.89.5", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
10 changes: 5 additions & 5 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.80.45"
version = "0.80.46"

[[bin]]
bench = false
Expand All @@ -31,12 +31,12 @@ swc_common = { version = "0.31.5", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.103.5", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.138.14", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.180.29", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.138.15", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.180.30", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.133.11", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.126.17", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "0.133.12", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.126.18", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.89.5", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.15.5", path = "../swc_error_reporters" }
swc_timer = { version = "0.19.6", path = "../swc_timer" }
4 changes: 2 additions & 2 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.102.11"
version = "0.102.12"

[lib]
bench = false
Expand All @@ -26,5 +26,5 @@ anyhow = "1"
dashmap = "5.1.0"

swc_ecma_ast = { version = "0.103.5", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.133.11", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.133.12", path = "../swc_ecma_parser" }
testing = { version = "0.33.6", path = "../testing" }
Loading

0 comments on commit 767284e

Please sign in to comment.