chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-20 07:47:43 +00:00
parent 7e6ec8d587
commit 417278f79e
13 changed files with 40 additions and 37 deletions

View File

@ -14,6 +14,9 @@
- **(es/minifier)** Abort IIFE invoker completely on eval (#6659) ([bb9fab8](https://github.com/swc-project/swc/commit/bb9fab8d0358262b8236c372d62660a50b5b3417)) - **(es/minifier)** Abort IIFE invoker completely on eval (#6659) ([bb9fab8](https://github.com/swc-project/swc/commit/bb9fab8d0358262b8236c372d62660a50b5b3417))
- **(es/minifier)** Don't inline invalid LHS into an update argument (#6680) ([7e6ec8d](https://github.com/swc-project/swc/commit/7e6ec8d587471dba1dde44ebcfd6af6d03247955))
- **(es/preset-env)** Align polyfills with `@babel/plugin-polyfill-corejs3` (#6673) ([5fed222](https://github.com/swc-project/swc/commit/5fed22282971c62af3be8bf0b858684ca90ec7fc)) - **(es/preset-env)** Align polyfills with `@babel/plugin-polyfill-corejs3` (#6673) ([5fed222](https://github.com/swc-project/swc/commit/5fed22282971c62af3be8bf0b858684ca90ec7fc))
### Features ### Features

22
Cargo.lock generated
View File

@ -177,7 +177,7 @@ dependencies = [
[[package]] [[package]]
name = "binding_macros" name = "binding_macros"
version = "0.24.19" version = "0.24.20"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"console_error_panic_hook", "console_error_panic_hook",
@ -845,7 +845,7 @@ dependencies = [
[[package]] [[package]]
name = "dbg-swc" name = "dbg-swc"
version = "0.60.7" version = "0.60.8"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap 3.1.0", "clap 3.1.0",
@ -3077,7 +3077,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.236.19" version = "0.236.20"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -3149,7 +3149,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_bundler" name = "swc_bundler"
version = "0.193.25" version = "0.193.26"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -3264,7 +3264,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.48.37" version = "0.48.38"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"binding_macros", "binding_macros",
@ -3628,7 +3628,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
version = "0.160.25" version = "0.160.26"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -4068,7 +4068,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecmascript" name = "swc_ecmascript"
version = "0.206.26" version = "0.206.27"
dependencies = [ dependencies = [
"swc_ecma_ast", "swc_ecma_ast",
"swc_ecma_codegen", "swc_ecma_codegen",
@ -4116,7 +4116,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_estree_compat" name = "swc_estree_compat"
version = "0.158.19" version = "0.158.20"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -4164,7 +4164,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.100.28" version = "0.100.29"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -4216,7 +4216,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.97.28" version = "0.97.29"
dependencies = [ dependencies = [
"criterion", "criterion",
"once_cell", "once_cell",
@ -4302,7 +4302,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_node_bundler" name = "swc_node_bundler"
version = "0.22.19" version = "0.22.20"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"dashmap", "dashmap",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "binding_macros" name = "binding_macros"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.24.19" version = "0.24.20"
[lib] [lib]
bench = false bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies] [dependencies]
# Common deps for the SWC imports # Common deps for the SWC imports
swc = { optional = true, version = "0.236.19", path = "../swc" } swc = { optional = true, version = "0.236.20", path = "../swc" }
swc_common = { optional = true, version = "0.29.24", path = "../swc_common" } swc_common = { optional = true, version = "0.29.24", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.18", path = "../swc_ecma_transforms" } swc_ecma_transforms = { optional = true, version = "0.199.18", path = "../swc_ecma_transforms" }

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "dbg-swc" name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git" repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.60.7" version = "0.60.8"
[[bin]] [[bin]]
bench = false bench = false
@ -27,7 +27,7 @@ swc_common = { version = "0.29.24", features = [
], path = "../swc_common" } ], path = "../swc_common" }
swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.25", path = "../swc_ecma_minifier", features = [ swc_ecma_minifier = { version = "0.160.26", path = "../swc_ecma_minifier", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.236.19" version = "0.236.20"
[lib] [lib]
bench = false bench = false
@ -79,7 +79,7 @@ swc_ecma_loader = { version = "0.41.25", path = "../swc_ecma_loader", features =
"node", "node",
"tsc", "tsc",
] } ] }
swc_ecma_minifier = { version = "0.160.25", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.160.26", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.175.19", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { version = "0.175.19", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.199.18", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.199.18", path = "../swc_ecma_transforms", features = [

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_bundler" name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.193.25" version = "0.193.26"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -61,7 +61,7 @@ swc_ecma_loader = { version = "0.41.25", path = "../swc_ecma_loader", features =
"node", "node",
"cache", "cache",
] } ] }
swc_ecma_minifier = { version = "0.160.25", path = "../swc_ecma_minifier", features = [ swc_ecma_minifier = { version = "0.160.26", path = "../swc_ecma_minifier", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_transforms_proposal = { version = "0.145.17", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_proposal = { version = "0.145.17", path = "../swc_ecma_transforms_proposal" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_core" name = "swc_core"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.48.37" version = "0.48.38"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -340,10 +340,10 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies # swc_* dependencies
binding_macros = { optional = true, version = "0.24.19", path = "../binding_macros" } binding_macros = { optional = true, version = "0.24.20", path = "../binding_macros" }
swc = { optional = true, version = "0.236.19", path = "../swc" } swc = { optional = true, version = "0.236.20", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.31", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.4.31", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.193.25", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.193.26", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.24", path = "../swc_common" } swc_common = { optional = true, version = "0.29.24", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.131.4", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.131.4", path = "../swc_css_ast" }
@ -357,7 +357,7 @@ swc_css_visit = { optional = true, version = "0.130.4", path
swc_ecma_ast = { optional = true, version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.128.14", path = "../swc_ecma_codegen" } swc_ecma_codegen = { optional = true, version = "0.128.14", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.41.25", path = "../swc_ecma_loader" } swc_ecma_loader = { optional = true, version = "0.41.25", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.160.25", path = "../swc_ecma_minifier" } swc_ecma_minifier = { optional = true, version = "0.160.26", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.123.12", path = "../swc_ecma_parser" } swc_ecma_parser = { optional = true, version = "0.123.12", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.175.19", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { optional = true, version = "0.175.19", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.34.12", path = "../swc_ecma_quote_macros" } swc_ecma_quote_macros = { optional = true, version = "0.34.12", path = "../swc_ecma_quote_macros" }
@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.1.7", path =
swc_ecma_utils = { optional = true, version = "0.106.12", path = "../swc_ecma_utils" } swc_ecma_utils = { optional = true, version = "0.106.12", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.81.8", path = "../swc_ecma_visit" } swc_ecma_visit = { optional = true, version = "0.81.8", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" } swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.22.19", path = "../swc_node_bundler" } swc_node_bundler = { optional = true, version = "0.22.20", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" } swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" } swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.160.25" version = "0.160.26"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecmascript" name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.206.26" version = "0.206.27"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -42,7 +42,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen", optional = true } swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen", optional = true }
swc_ecma_dep_graph = { version = "0.95.12", path = "../swc_ecma_dep_graph", optional = true } swc_ecma_dep_graph = { version = "0.95.12", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.160.25", path = "../swc_ecma_minifier", optional = true } swc_ecma_minifier = { version = "0.160.26", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.175.19", path = "../swc_ecma_preset_env", optional = true } swc_ecma_preset_env = { version = "0.175.19", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.39.12", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.39.12", path = "../swc_ecma_quote", optional = true }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_estree_compat" name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.158.19" version = "0.158.20"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.24", path = "../swc_node_comments/" }
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
pretty_assertions = "1.1" pretty_assertions = "1.1"
swc = { version = "0.236.19", path = "../swc" } swc = { version = "0.236.20", path = "../swc" }
swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.199.18", path = "../swc_ecma_transforms/" } swc_ecma_transforms = { version = "0.199.18", path = "../swc_ecma_transforms/" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html" name = "swc_html"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.100.28" version = "0.100.29"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.28.16", path = "../swc_html_ast"} swc_html_ast = {version = "0.28.16", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.28", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.37.28", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.28", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.97.29", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.27", path = "../swc_html_parser"} swc_html_parser = {version = "0.34.27", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.16", path = "../swc_html_visit"} swc_html_visit = {version = "0.28.16", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_minifier" name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.97.28" version = "0.97.29"
[lib] [lib]
bench = false bench = false
@ -28,7 +28,7 @@ swc_css_minifier = { version = "0.106.20", path = "../swc_css_minifier"
swc_css_parser = { version = "0.140.12", path = "../swc_css_parser" } swc_css_parser = { version = "0.140.12", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.95.8", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.128.14", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.160.25", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.160.26", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.123.12", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.16", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.112.16", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.81.8", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.81.8", path = "../swc_ecma_visit" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_node_bundler" name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.22.19" version = "0.22.20"
[lib] [lib]
bench = false bench = false
@ -26,9 +26,9 @@ regex = "1"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
string_enum = { version = "0.3.2", path = "../string_enum" } string_enum = { version = "0.3.2", path = "../string_enum" }
swc = { version = "0.236.19", path = "../swc" } swc = { version = "0.236.20", path = "../swc" }
swc_atoms = { version = "0.4.31", path = "../swc_atoms" } swc_atoms = { version = "0.4.31", path = "../swc_atoms" }
swc_bundler = { version = "0.193.25", path = "../swc_bundler", features = [ swc_bundler = { version = "0.193.26", path = "../swc_bundler", features = [
"concurrent", "concurrent",
] } ] }
swc_common = { version = "0.29.24", path = "../swc_common", features = [ swc_common = { version = "0.29.24", path = "../swc_common", features = [