Skip to content

Commit

Permalink
Merge branch 'main' into ci-rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Feb 13, 2024
2 parents a5f3c4b + 9ad0f9f commit 910a4d7
Show file tree
Hide file tree
Showing 26 changed files with 172 additions and 112 deletions.
12 changes: 3 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
- **(binding/types)** Update typings for `options.envs` to match implementation ([#8620](https://github.com/swc-project/swc/issues/8620)) ([2a115cf](https://github.com/swc-project/swc/commit/2a115cff716b3ac9216d03a4c88649fedff73850))


- **(es/decorators)** Do not insert duplicate constructors ([#8631](https://github.com/swc-project/swc/issues/8631)) ([21a447f](https://github.com/swc-project/swc/commit/21a447f35a79cdad4721cdefea26da1d355d34d3))


- **(es/parser)** Set class property to `abstract` or `override` even in error states ([#8610](https://github.com/swc-project/swc/issues/8610)) ([5a77306](https://github.com/swc-project/swc/commit/5a773061dbb8674d93fab46681492a7e08f95f2c))


Expand Down Expand Up @@ -1451,15 +1454,6 @@

- **(es/minifier)** Do not reuse identifier used for import bindings ([#7639](https://github.com/swc-project/swc/issues/7639)) ([a65be14](https://github.com/swc-project/swc/commit/a65be14a00f41e9b0b4439c31b49febeefd1f845))


- **(es/module)** Skip CJS and AMD transformations for `Script` ([#7661](https://github.com/swc-project/swc/issues/7661)) ([a2d0408](https://github.com/swc-project/swc/commit/a2d040859790d10d445ba6b06e9fe88635d84c1b))

### Features



- **(es/minifier)** Drop recursively used var declaration ([#7649](https://github.com/swc-project/swc/issues/7649)) ([04b0f6d](https://github.com/swc-project/swc/commit/04b0f6d8234bdcc34815a558c4c9eecf24c8e4e7))

### Buiild


Expand Down
36 changes: 18 additions & 18 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.4"
version = "0.64.5"

[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.4", path = "../swc" }
swc = { optional = true, version = "0.273.5", path = "../swc" }
swc_common = { optional = true, version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.3", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.4", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.2", 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.6"
version = "0.91.7"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.17", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.3", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
Expand Down
12 changes: 6 additions & 6 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.4"
version = "0.273.5"

[lib]
bench = false
Expand Down Expand Up @@ -73,7 +73,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.7.3", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.7.4", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
Expand All @@ -84,10 +84,10 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.192.3", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.3", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.3", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.4", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -97,7 +97,7 @@ swc_ecma_transforms = { version = "0.229.3", path = "../swc_ecma_transforms", fe
] }
swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.3", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" }
Expand Down
10 changes: 5 additions & 5 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.3"
version = "0.225.4"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.3", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph/" }
Expand All @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features =
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.192.3", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.171.3", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.3", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.3", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.18", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.8.7"
version = "0.8.8"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.90.7", features = [
swc_core = { version = "0.90.8", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.7.3"
version = "0.7.4"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -27,7 +27,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.3", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }
Expand Down
20 changes: 10 additions & 10 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.7"
version = "0.90.8"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -324,10 +324,10 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }

# swc_* dependencies
binding_macros = { optional = true, version = "0.64.4", path = "../binding_macros" }
swc = { optional = true, version = "0.273.4", path = "../swc" }
binding_macros = { optional = true, version = "0.64.5", path = "../binding_macros" }
swc = { optional = true, version = "0.273.5", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.225.3", path = "../swc_bundler" }
swc_bundler = { optional = true, version = "0.225.4", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.17", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.18", path = "../swc_css_ast" }
Expand All @@ -342,23 +342,23 @@ swc_css_visit = { optional = true, version = "0.139.18", path
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.192.3", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { optional = true, version = "0.192.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.206.3", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.206.4", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.54.6", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.137.3", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.180.3", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.3", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.171.3", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.171.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.183.3", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.140.3", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.3", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.4", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.3", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.3", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.62.4", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.62.5", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" }
Expand Down

0 comments on commit 910a4d7

Please sign in to comment.