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 Nov 20, 2022
1 parent c57307d commit 66b4966
Show file tree
Hide file tree
Showing 34 changed files with 221 additions and 215 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,12 @@

- **(es/codegen)** Skip whitespaces for comments in minify mode (#6465) ([08a9e21](https://github.com/swc-project/swc/commit/08a9e21b36a3fbb03d4b5ae621c94e76ae6ab54f))

### Refactor



- **(es)** Remove settings related to `privateInObject` (#6468) ([c57307d](https://github.com/swc-project/swc/commit/c57307d0029e9e52dc41411c4c727da221cdfadb))

## [1.3.19] - 2022-11-20

### Bug Fixes
Expand Down
64 changes: 32 additions & 32 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
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.20.108"
version = "0.20.109"

[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.232.105", path = "../swc" }
swc = { optional = true, version = "0.232.106", path = "../swc" }
swc_common = { optional = true, version = "0.29.15", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.94.20", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.198.56", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.198.57", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.80.20", path = "../swc_ecma_visit" }

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

[[bin]]
bench = false
Expand All @@ -26,12 +26,12 @@ swc_common = { version = "0.29.15", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.94.20", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.34", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.91", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.127.35", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.92", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.122.28", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.111.52", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "0.122.29", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.111.53", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.80.20", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.15", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.15", path = "../swc_timer" }
Expand Down
4 changes: 2 additions & 2 deletions crates/jsdoc/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.91.28"
version = "0.91.29"

[lib]
bench = false
Expand All @@ -21,5 +21,5 @@ swc_common = { version = "0.29.15", path = "../swc_common" }
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = { version = "0.94.20", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.122.28", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.122.29", path = "../swc_ecma_parser" }
testing = { version = "0.31.15", path = "../testing" }

0 comments on commit 66b4966

Please sign in to comment.