chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-08-18 10:55:13 +09:00
parent 9b3f4f88e1
commit a1aca0c366
11 changed files with 38 additions and 46 deletions

View File

@ -1,22 +1,5 @@
# Changelog
## [unreleased]
### Bug Fixes
- **(css/prefixer)** Reduce duplicates (#5537) ([0985c15](https://github.com/swc-project/swc/commit/0985c1546b38a4072099e45af354c4534e0e23cb))
### Features
- **(dbg-swc)** Improve minifier comparator (#5541) ([935a2fb](https://github.com/swc-project/swc/commit/935a2fbd002398a9593135fb765127d24f4e4dbb))
- **(es/minifier)** Ignore recursive usage for function calls and pure calls (#5526) ([d2f3e29](https://github.com/swc-project/swc/commit/d2f3e29bb054ffcb557fb54d535dc98640a77dc4))
## [1.2.238] - 2022-08-17
## [1.2.239] - 2022-08-18
### Bug Fixes
@ -28,6 +11,9 @@
- **(css/prefixer)** Handle supports (#5503) ([dc98234](https://github.com/swc-project/swc/commit/dc98234fab255a411d56a363b7a9e1d0c7ff131d))
- **(css/prefixer)** Reduce duplicates (#5537) ([0985c15](https://github.com/swc-project/swc/commit/0985c1546b38a4072099e45af354c4534e0e23cb))
- **(es/fixer)** Wrap first `function` or `class` of a sequence expression (#5508) ([f27ed73](https://github.com/swc-project/swc/commit/f27ed73594110b27b3937a7f5211503f0f72f3f9))
@ -49,6 +35,12 @@
- **(css/prefixer)** Support more env properties and values (#5512) ([674c788](https://github.com/swc-project/swc/commit/674c788654714512000c64abf1a088e0f9f2820b))
- **(dbg-swc)** Improve minifier comparator (#5541) ([935a2fb](https://github.com/swc-project/swc/commit/935a2fbd002398a9593135fb765127d24f4e4dbb))
- **(es/minifier)** Ignore recursive usage for function calls and pure calls (#5526) ([d2f3e29](https://github.com/swc-project/swc/commit/d2f3e29bb054ffcb557fb54d535dc98640a77dc4))
- **(es/plugin/runner)** Add more traces for the plugin host (#5538) ([d46418b](https://github.com/swc-project/swc/commit/d46418bb470761db48cd1a3e50578d4e1e82e577))

18
Cargo.lock generated
View File

@ -168,7 +168,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.2.4"
version = "0.3.0"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -2021,7 +2021,7 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "preset_env_base"
version = "0.2.4"
version = "0.3.0"
dependencies = [
"ahash",
"anyhow",
@ -2837,7 +2837,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.214.10"
version = "0.215.0"
dependencies = [
"ahash",
"ansi_term",
@ -3022,7 +3022,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.7.20"
version = "0.8.0"
dependencies = [
"binding_macros",
"once_cell",
@ -3157,7 +3157,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.117.3"
version = "0.118.0"
dependencies = [
"once_cell",
"preset_env_base",
@ -3385,7 +3385,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.158.4"
version = "0.159.0"
dependencies = [
"ahash",
"anyhow",
@ -3744,7 +3744,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.189.4"
version = "0.190.0"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -3792,7 +3792,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.136.4"
version = "0.137.0"
dependencies = [
"ahash",
"anyhow",
@ -3975,7 +3975,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.0.3"
version = "0.1.0"
dependencies = [
"anyhow",
"dashmap",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.4"
version = "0.3.0"
[lib]
bench = false
@ -30,7 +30,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.214.9", path = "../swc" }
swc = { optional = true, version = "0.215.0", path = "../swc" }
swc_common = { optional = true, version = "0.27.7", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.183.4", path = "../swc_ecma_transforms" }

View File

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

View File

@ -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.214.10"
version = "0.215.0"
[lib]
bench = false
@ -73,7 +73,7 @@ swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.144.7", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.117.5", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.158.4", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { version = "0.159.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.183.4", path = "../swc_ecma_transforms", features = [
"compat",
"module",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.7.20"
version = "0.8.0"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -224,8 +224,8 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies
binding_macros = { optional = true, version = "0.2.4", path = "../binding_macros" }
swc = { optional = true, version = "0.214.9", path = "../swc" }
binding_macros = { optional = true, version = "0.3.0", path = "../binding_macros" }
swc = { optional = true, version = "0.215.0", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.8", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.177.4", path = "../swc_bundler" }
swc_common = { optional = true, version = "0.27.11", path = "../swc_common" }
@ -238,7 +238,7 @@ swc_ecma_transforms_testing = { optional = true, version = "0.105.5", path = "..
swc_ecma_utils = { optional = true, version = "0.99.5", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.76.6", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.0.3", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.1.0", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.89.1", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.7", path = "../swc_plugin_macro" }

View File

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

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.189.4"
version = "0.190.0"
[package.metadata.docs.rs]
all-features = true
@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.121.5", path = "../swc_ecma_codegen", optio
swc_ecma_dep_graph = { version = "0.89.5", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.144.7", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.117.5", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.158.4", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "0.159.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.32.5", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.183.4", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.99.5", path = "../swc_ecma_utils", optional = true }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.136.4"
version = "0.137.0"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.14.4", path = "../swc_node_comments/" }
[dev-dependencies]
criterion = "0.3"
pretty_assertions = "1.1"
swc = { version = "0.214.9", path = "../swc" }
swc = { version = "0.215.0", path = "../swc" }
swc_ecma_ast = { version = "0.90.10", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.117.5", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.183.4", path = "../swc_ecma_transforms/" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.0.3"
version = "0.1.0"
[lib]
bench = false
@ -26,7 +26,7 @@ regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
string_enum = { version = "0.3", path = "../string_enum" }
swc = { version = "0.214.9", path = "../swc" }
swc = { version = "0.215.0", path = "../swc" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_bundler = { version = "0.177.4", path = "../swc_bundler", features = [
"concurrent",