chore: Publish crates

This commit is contained in:
Donny 2021-12-29 13:46:45 +09:00
parent 43c8cda31a
commit 737b6108d4
8 changed files with 25 additions and 22 deletions

View File

@ -1,5 +1,5 @@
# Changelog
## [unreleased]
## [1.2.124] - 2021-12-29
### Bug Fixes
@ -23,6 +23,9 @@
- **(es/parser)** Support import assertions in specifier-less imports (#3134) ([2f3ca22](https://github.com/swc-project/swc/commit/2f3ca22ecf7f567256695c39a904f02ff75e2c85))
- **(es/renamer)** Fix renamer (#3139) ([43c8cda](https://github.com/swc-project/swc/commit/43c8cda31a89bfc027ea3948bd9653d97d3fc29c))
- **(es/utils)** Fix `is_valid_ident` (#3133) ([ec7e0ae](https://github.com/swc-project/swc/commit/ec7e0aee256cc7cc13f81ef22164c29f42bb43be))

14
Cargo.lock generated
View File

@ -1118,9 +1118,9 @@ dependencies = [
[[package]]
name = "lru"
version = "0.7.1"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "469898e909a1774d844793b347135a0cd344ca2f69d082013ecb8061a2229a3a"
checksum = "274353858935c992b13c0ca408752e2121da852d07dec7ce5f108c77dfa14d1f"
dependencies = [
"hashbrown",
]
@ -2601,7 +2601,7 @@ dependencies = [
[[package]]
name = "swc_bundler"
version = "0.93.0"
version = "0.93.1"
dependencies = [
"ahash",
"anyhow",
@ -2909,7 +2909,7 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.60.1"
version = "0.60.2"
dependencies = [
"ahash",
"ansi_term 0.12.1",
@ -3013,7 +3013,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms"
version = "0.103.8"
version = "0.103.9"
dependencies = [
"pretty_assertions 0.6.1",
"sourcemap",
@ -3040,7 +3040,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_base"
version = "0.49.2"
version = "0.49.3"
dependencies = [
"once_cell",
"phf",
@ -3286,7 +3286,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.99.9"
version = "0.99.10"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

View File

@ -59,10 +59,10 @@ swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.42.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.1.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.60.2", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.82.6", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.76.2", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = {version = "0.103.9", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -70,12 +70,12 @@ swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", fea
"react",
"typescript",
]}
swc_ecma_transforms_base = {version = "0.49.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_base = {version = "0.49.3", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.59.10", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.73.1", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.99.9", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.99.10", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.2.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.22.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -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.93.0"
version = "0.93.1"
[package.metadata.docs.rs]
all-features = true
@ -46,7 +46,7 @@ swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen"}
swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader"}
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.49.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_base = {version = "0.49.3", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_optimization = {version = "0.73.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
@ -61,7 +61,7 @@ path-clean = "=0.1.0"
reqwest = {version = "0.11.4", features = ["blocking"]}
sha-1 = "0.9"
swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader", features = ["node", "lru"]}
swc_ecma_minifier = {version = "0.60.0", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.60.2", path = "../swc_ecma_minifier"}
swc_ecma_transforms_react = {version = "0.67.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_typescript = {version = "0.69.0", path = "../swc_ecma_transforms_typescript"}
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}

View File

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

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.103.8"
version = "0.103.9"
[package.metadata.docs.rs]
all-features = true
@ -27,7 +27,7 @@ swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = {version = "0.15.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.49.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_base = {version = "0.49.3", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.59.10", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.65.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.73.1", path = "../swc_ecma_transforms_optimization", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.49.2"
version = "0.49.3"
[features]
concurrent = [

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.9"
version = "0.99.10"
[package.metadata.docs.rs]
all-features = true
@ -36,10 +36,10 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = {version = "0.60.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier", optional = true}
swc_ecma_minifier = {version = "0.60.2", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.82.6", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.76.2", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", optional = true}
swc_ecma_transforms = {version = "0.103.9", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit", optional = true}