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 Oct 5, 2023
1 parent 3e5b062 commit da9bee9
Show file tree
Hide file tree
Showing 30 changed files with 172 additions and 166 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

- Use `cargo xtask` ([#8068](https://github.com/swc-project/swc/issues/8068)) ([6420aef](https://github.com/swc-project/swc/commit/6420aefca5bd22af3a75b7ad34741509ed35377a))

### Refactor



- **(es/module)** Reimplement some functions of module/typescript ([#8063](https://github.com/swc-project/swc/issues/8063)) ([3e5b062](https://github.com/swc-project/swc/commit/3e5b062cd2792703371bbbfeaf1be309e8280abd))

## [1.3.92] - 2023-10-05

### Bug Fixes
Expand Down
56 changes: 28 additions & 28 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.57.36"
version = "0.57.37"

[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.266.36", path = "../swc" }
swc = { optional = true, version = "0.266.37", path = "../swc" }
swc_common = { optional = true, version = "0.32.1", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.109.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.224.26", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.224.27", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.95.1", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
6 changes: 3 additions & 3 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.87.53"
version = "0.87.54"

[[bin]]
bench = false
Expand All @@ -32,11 +32,11 @@ swc_common = { version = "0.32.1", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.145.5", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.187.29", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.187.30", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.140.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.133.6", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "0.133.7", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.95.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.16.1", path = "../swc_error_reporters" }
swc_timer = { version = "0.20.1", path = "../swc_timer" }
24 changes: 12 additions & 12 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.266.36"
version = "0.266.37"

[lib]
bench = false
Expand Down Expand Up @@ -73,32 +73,32 @@ swc_common = { version = "0.32.1", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.1.8", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.1.9", path = "../swc_compiler_base" }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.145.5", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.109.1", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.88.7", path = "../swc_ecma_lints" }
swc_ecma_ext_transforms = { version = "0.109.2", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.88.8", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.44.4", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.187.29", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.187.30", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.140.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.201.28", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.224.26", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.201.29", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.224.27", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "0.133.6", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.159.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.193.26", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.123.1", path = "../swc_ecma_utils" }
swc_ecma_transforms_base = { version = "0.133.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.159.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.193.27", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.123.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.95.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.16.1", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.19.1", path = "../swc_node_comments" }
Expand Down Expand Up @@ -127,7 +127,7 @@ rayon = "1.7.0"
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.88.7", path = "../swc_ecma_lints", features = [
swc_ecma_lints = { version = "0.88.8", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "0.21.1", path = "../swc_ecma_testing" }
Expand Down
Loading

0 comments on commit da9bee9

Please sign in to comment.