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 4, 2023
1 parent 65a0d3a commit 790c478
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 @@ -20,6 +20,9 @@
- **(es/minifier)** Fix usage counter to fix infinite loop (#6744) ([88d40e8](https://github.com/swc-project/swc/commit/88d40e8ab899976c123b5b5f74f0ad02ec9d7868))


- **(es/parser)** Fix priority of `>>>` (#6748) ([65a0d3a](https://github.com/swc-project/swc/commit/65a0d3a3109f3d32818f7bf2c8ebbeb863c62060))


- **(es/plugin)** Fix plugin starter template (#6723) ([082dc21](https://github.com/swc-project/swc/commit/082dc2101b8f3c05b103cf59484355ef87016a57))


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.27.2"
version = "0.27.3"

[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.238.6", path = "../swc" }
swc = { optional = true, version = "0.238.7", path = "../swc" }
swc_common = { optional = true, version = "0.29.25", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.9", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.21", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.199.22", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.81.9", 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.60.21"
version = "0.60.22"

[[bin]]
bench = false
Expand All @@ -26,12 +26,12 @@ swc_common = { version = "0.29.25", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.95.9", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.15", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.31", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.128.16", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.32", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.123.13", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.19", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "0.123.14", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.20", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.81.9", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.26", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.27", path = "../swc_timer" }
Expand Down
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.92.13"
version = "0.92.14"

[lib]
bench = false
Expand All @@ -21,5 +21,5 @@ swc_common = { version = "0.29.25", path = "../swc_common" }
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = { version = "0.95.9", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.123.13", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.123.14", path = "../swc_ecma_parser" }
testing = { version = "0.31.27", path = "../testing" }

0 comments on commit 790c478

Please sign in to comment.