chore: Publish crates

This commit is contained in:
SWC Bot 2022-09-16 01:07:09 +00:00
parent 73c48a8e6e
commit ca6325ca7d
11 changed files with 32 additions and 29 deletions

View File

@ -22,6 +22,9 @@
- **(es/minifier)** Move assign with seq init into seq (#5847) ([63fb0c4](https://github.com/swc-project/swc/commit/63fb0c4ad34698d4d3f0c49ff5a78f6e446e64f9)) - **(es/minifier)** Move assign with seq init into seq (#5847) ([63fb0c4](https://github.com/swc-project/swc/commit/63fb0c4ad34698d4d3f0c49ff5a78f6e446e64f9))
- **(preset-env/base)** Implement more traits for `BrowserData` and `Version` (#5879) ([73c48a8](https://github.com/swc-project/swc/commit/73c48a8e6eb3d002ca0c575d253f32ae1aa6e5ea))
### Miscellaneous Tasks ### Miscellaneous Tasks

18
Cargo.lock generated
View File

@ -168,7 +168,7 @@ dependencies = [
[[package]] [[package]]
name = "binding_macros" name = "binding_macros"
version = "0.14.27" version = "0.14.28"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"console_error_panic_hook", "console_error_panic_hook",
@ -2082,7 +2082,7 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]] [[package]]
name = "preset_env_base" name = "preset_env_base"
version = "0.3.1" version = "0.3.2"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -2923,7 +2923,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.226.27" version = "0.226.28"
dependencies = [ dependencies = [
"ahash", "ahash",
"ansi_term", "ansi_term",
@ -3111,7 +3111,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.23.25" version = "0.23.26"
dependencies = [ dependencies = [
"binding_macros", "binding_macros",
"once_cell", "once_cell",
@ -3264,7 +3264,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_prefixer" name = "swc_css_prefixer"
version = "0.123.6" version = "0.123.7"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"preset_env_base", "preset_env_base",
@ -3492,7 +3492,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_preset_env" name = "swc_ecma_preset_env"
version = "0.169.22" version = "0.169.23"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -3853,7 +3853,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecmascript" name = "swc_ecmascript"
version = "0.200.26" version = "0.200.27"
dependencies = [ dependencies = [
"swc_ecma_ast", "swc_ecma_ast",
"swc_ecma_codegen", "swc_ecma_codegen",
@ -3901,7 +3901,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_estree_compat" name = "swc_estree_compat"
version = "0.148.27" version = "0.148.28"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -4086,7 +4086,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_node_bundler" name = "swc_node_bundler"
version = "0.12.27" version = "0.12.28"
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.14.27" version = "0.14.28"
[lib] [lib]
bench = false bench = false
@ -30,7 +30,7 @@ binding_wasm = [
[dependencies] [dependencies]
# Common deps for the SWC imports # Common deps for the SWC imports
swc = { optional = true, version = "0.226.27", path = "../swc" } swc = { optional = true, version = "0.226.28", path = "../swc" }
swc_common = { optional = true, version = "0.28.7", path = "../swc_common" } swc_common = { optional = true, version = "0.28.7", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.193.22", path = "../swc_ecma_transforms" } swc_ecma_transforms = { optional = true, version = "0.193.22", path = "../swc_ecma_transforms" }

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/"
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "preset_env_base" name = "preset_env_base"
version = "0.3.1" version = "0.3.2"
[lib] [lib]
bench = false bench = false

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.226.27" version = "0.226.28"
[lib] [lib]
bench = false bench = false
@ -74,7 +74,7 @@ swc_ecma_loader = { version = "0.40.7", path = "../swc_ecma_loader", features =
] } ] }
swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.169.22", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { version = "0.169.23", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"module", "module",

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.23.25" version = "0.23.26"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -300,8 +300,8 @@ 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.14.27", path = "../binding_macros" } binding_macros = { optional = true, version = "0.14.28", path = "../binding_macros" }
swc = { optional = true, version = "0.226.27", path = "../swc" } swc = { optional = true, version = "0.226.28", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.14", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.4.14", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.187.26", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.187.26", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.10", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.10", path = "../swc_cached" }
@ -310,7 +310,7 @@ swc_css_ast = { optional = true, version = "0.112.6", path
swc_css_codegen = { optional = true, version = "0.122.6", path = "../swc_css_codegen" } swc_css_codegen = { optional = true, version = "0.122.6", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.87.9", path = "../swc_css_minifier" } swc_css_minifier = { optional = true, version = "0.87.9", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.121.6", path = "../swc_css_parser" } swc_css_parser = { optional = true, version = "0.121.6", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.123.6", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.123.7", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.109.6", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.109.6", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.111.6", path = "../swc_css_visit" } swc_css_visit = { optional = true, version = "0.111.6", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" }
@ -329,7 +329,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.154.19", path
swc_ecma_utils = { optional = true, version = "0.102.13", path = "../swc_ecma_utils" } swc_ecma_utils = { optional = true, version = "0.102.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.77.7", path = "../swc_ecma_visit" } swc_ecma_visit = { optional = true, version = "0.77.7", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" } swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.12.27", path = "../swc_node_bundler" } swc_node_bundler = { optional = true, version = "0.12.28", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" } swc_nodejs_common = { optional = true, version = "0.0.1", 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.8", path = "../swc_plugin_macro" } swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" }

View File

@ -7,14 +7,14 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_prefixer" name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.123.6" version = "0.123.7"
[lib] [lib]
bench = false bench = false
[dependencies] [dependencies]
once_cell = "1.10.0" once_cell = "1.10.0"
preset_env_base = { version = "0.3.0", path = "../preset_env_base" } preset_env_base = { version = "0.3.2", path = "../preset_env_base" }
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.4.14", path = "../swc_atoms" } swc_atoms = { version = "0.4.14", path = "../swc_atoms" }

View File

@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_preset_env" name = "swc_ecma_preset_env"
version = "0.169.22" version = "0.169.23"
[lib] [lib]
bench = false bench = false
@ -17,7 +17,7 @@ anyhow = "1"
dashmap = "5.1.0" dashmap = "5.1.0"
indexmap = "1.6.2" indexmap = "1.6.2"
once_cell = "1.10.0" once_cell = "1.10.0"
preset_env_base = { version = "0.3.0", path = "../preset_env_base" } preset_env_base = { version = "0.3.2", path = "../preset_env_base" }
semver = { version = "1.0.4", features = ["serde"] } semver = { version = "1.0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"

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.200.26" version = "0.200.27"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.124.13", path = "../swc_ecma_codegen", opti
swc_ecma_dep_graph = { version = "0.91.11", path = "../swc_ecma_dep_graph", optional = true } swc_ecma_dep_graph = { version = "0.91.11", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier", optional = true } swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.169.22", path = "../swc_ecma_preset_env", optional = true } swc_ecma_preset_env = { version = "0.169.23", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.35.13", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.35.13", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", optional = true } swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.102.13", path = "../swc_ecma_utils", optional = true } swc_ecma_utils = { version = "0.102.13", path = "../swc_ecma_utils", 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.148.27" version = "0.148.28"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.15.7", 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.226.27", path = "../swc" } swc = { version = "0.226.28", path = "../swc" }
swc_ecma_ast = { version = "0.91.7", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.91.7", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms/" } swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms/" }

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.12.27" version = "0.12.28"
[lib] [lib]
bench = false bench = false
@ -26,7 +26,7 @@ regex = "1"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
string_enum = { version = "0.3", path = "../string_enum" } string_enum = { version = "0.3", path = "../string_enum" }
swc = { version = "0.226.27", path = "../swc" } swc = { version = "0.226.28", path = "../swc" }
swc_atoms = { version = "0.4.14", path = "../swc_atoms" } swc_atoms = { version = "0.4.14", path = "../swc_atoms" }
swc_bundler = { version = "0.187.26", path = "../swc_bundler", features = [ swc_bundler = { version = "0.187.26", path = "../swc_bundler", features = [
"concurrent", "concurrent",