Skip to content

Commit

Permalink
Merge branch 'main' into fix_set_if_abstract_or_override_even_in_erro…
Browse files Browse the repository at this point in the history
…r_states
  • Loading branch information
swc-bot authored Feb 6, 2024
2 parents ff9a839 + 3ee12cf commit 7f2c401
Show file tree
Hide file tree
Showing 29 changed files with 126 additions and 132 deletions.
15 changes: 6 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

- **(es/quote)** Fix code generation of `AssignTarget` ([#8604](https://github.com/swc-project/swc/issues/8604)) ([16e9d4c](https://github.com/swc-project/swc/commit/16e9d4ca31561caf4fb2a5182337eae78395dbe6))

### Miscellaneous Tasks



- **(config)** Remove an empty file in `swc_config` ([#8609](https://github.com/swc-project/swc/issues/8609)) ([d87fef0](https://github.com/swc-project/swc/commit/d87fef0fea661b3a50e43af85c12db98e978bc82))

### Refactor


Expand Down Expand Up @@ -1482,13 +1488,4 @@

- **(es/minifier)** Add usage to inlined ident eagerly ([#7597](https://github.com/swc-project/swc/issues/7597)) ([4f866de](https://github.com/swc-project/swc/commit/4f866de8788558a4f9f3e3f889048136c7896ee3))

### Features



- **(es/minifier)** Drop unused properties ([#7534](https://github.com/swc-project/swc/issues/7534)) ([47d2edd](https://github.com/swc-project/swc/commit/47d2edd4dc448a611396006852f30e2b8de1c42c))


- **(es/minifier)** Compress common sub expressions in sequences ([#7587](https://github.com/swc-project/swc/issues/7587)) ([ff1ad95](https://github.com/swc-project/swc/commit/ff1ad95b59732282c014474609bbb405e0f9edb4))

<!-- generated by git-cliff -->
50 changes: 25 additions & 25 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.64.0"
version = "0.64.1"

[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.273.0", path = "../swc" }
swc = { optional = true, version = "0.273.1", path = "../swc" }
swc_common = { optional = true, version = "0.33.16", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.0", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.1", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.0", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
4 changes: 2 additions & 2 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.91.2"
version = "0.91.3"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.16", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.143.0", path = "../swc_ecma_parser" }
Expand Down
20 changes: 10 additions & 10 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.273.0"
version = "0.273.1"

[lib]
bench = false
Expand Down Expand Up @@ -73,21 +73,21 @@ swc_common = { version = "0.33.16", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.7.0", path = "../swc_compiler_base" }
swc_config = { version = "0.1.10", path = "../swc_config" }
swc_compiler_base = { version = "0.7.1", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.113.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.92.0", path = "../swc_ecma_lints" }
swc_ecma_lints = { version = "0.92.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.18", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.0", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.1", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.1", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -96,8 +96,8 @@ swc_ecma_transforms = { version = "0.229.0", path = "../swc_ecma_transforms", fe
"typescript",
] }
swc_ecma_transforms_base = { version = "0.137.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.163.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.15", path = "../swc_error_reporters" }
Expand Down Expand Up @@ -127,7 +127,7 @@ rayon = "1.7.0"
swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.92.0", path = "../swc_ecma_lints", features = [
swc_ecma_lints = { version = "0.92.1", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "0.22.18", path = "../swc_ecma_testing" }
Expand Down
12 changes: 6 additions & 6 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.225.0"
version = "0.225.1"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.148.0", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.45.18", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.16", path = "../swc_fast_graph/" }
Expand All @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.18", path = "../swc_ecma_loader", features =
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.171.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.171.1", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.1", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.1", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.17", path = "../testing" }
Loading

0 comments on commit 7f2c401

Please sign in to comment.