chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-02-09 13:57:21 +09:00
parent 494b4c8203
commit 5e82640b42
14 changed files with 56 additions and 50 deletions

View File

@ -7,12 +7,18 @@
- **(es/modules)** Use correct `StrKind` after rewriting import path (#3489) ([ff6eb27](https://github.com/swc-project/swc/commit/ff6eb272a00f0c11c9e916eb898e1b309bcb686c))
- **(es/modules)** Hoist named exports (#3479) ([fa0216d](https://github.com/swc-project/swc/commit/fa0216d908118ba008f4be2505590bbb09b7be46))
### Features
- **(css/parser)** Improve error recovery (#3486) ([48e5b90](https://github.com/swc-project/swc/commit/48e5b903e2b82e8fc741d125662bbac825d5b0d0))
- **(swc/plugin)** Implement proxy for `Mark::fresh` (#3492) ([494b4c8](https://github.com/swc-project/swc/commit/494b4c8203514dd9f21b2bc3804ba8c44d46a4a1))
### Testing

24
Cargo.lock generated
View File

@ -2612,7 +2612,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.122.5"
version = "0.123.0"
dependencies = [
"ahash",
"anyhow",
@ -2666,7 +2666,7 @@ dependencies = [
[[package]]
name = "swc_bundler"
version = "0.105.0"
version = "0.106.0"
dependencies = [
"ahash",
"anyhow",
@ -2957,7 +2957,7 @@ dependencies = [
[[package]]
name = "swc_ecma_minifier"
version = "0.72.3"
version = "0.73.0"
dependencies = [
"ahash",
"ansi_term",
@ -3014,7 +3014,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.88.0"
version = "0.89.0"
dependencies = [
"ahash",
"anyhow",
@ -3042,7 +3042,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms"
version = "0.115.4"
version = "0.116.0"
dependencies = [
"pretty_assertions",
"sourcemap",
@ -3141,7 +3141,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_module"
version = "0.76.2"
version = "0.77.0"
dependencies = [
"Inflector",
"ahash",
@ -3164,7 +3164,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_optimization"
version = "0.85.0"
version = "0.86.0"
dependencies = [
"ahash",
"dashmap",
@ -3215,7 +3215,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_react"
version = "0.78.0"
version = "0.79.0"
dependencies = [
"ahash",
"base64 0.13.0",
@ -3264,7 +3264,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_typescript"
version = "0.80.0"
version = "0.81.0"
dependencies = [
"serde",
"swc_atoms",
@ -3311,7 +3311,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.112.9"
version = "0.113.0"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -3347,7 +3347,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.40.0"
version = "0.41.0"
dependencies = [
"ahash",
"anyhow",
@ -3537,7 +3537,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"anyhow",
"rayon",

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.122.5"
version = "0.123.0"
[lib]
name = "swc"
@ -52,10 +52,10 @@ swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.14.1", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.72.3", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.73.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.115.4", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = {version = "0.89.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.116.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -65,10 +65,10 @@ swc_ecma_transforms = {version = "0.115.4", path = "../swc_ecma_transforms", fea
]}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.85.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.1", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.112.9", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.113.0", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.31.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.105.0"
version = "0.106.0"
[package.metadata.docs.rs]
all-features = true
@ -47,7 +47,7 @@ swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_optimization = {version = "0.85.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_fast_graph = {version = "0.4.0", path = "../swc_fast_graph/"}
@ -61,9 +61,9 @@ path-clean = "=0.1.0"
reqwest = {version = "0.11.4", features = ["blocking"]}
sha-1 = "0.9"
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["node", "lru"]}
swc_ecma_minifier = {version = "0.72.0", path = "../swc_ecma_minifier"}
swc_ecma_transforms_react = {version = "0.78.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_typescript = {version = "0.80.0", path = "../swc_ecma_transforms_typescript"}
swc_ecma_minifier = {version = "0.73.0", path = "../swc_ecma_minifier"}
swc_ecma_transforms_react = {version = "0.79.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_typescript = {version = "0.81.0", path = "../swc_ecma_transforms_typescript"}
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
tempfile = "3.1.0"
testing = {version = "0.18.0", path = "../testing"}

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.72.3"
version = "0.73.0"
[package.metadata.docs.rs]
all-features = true
@ -33,7 +33,7 @@ swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.115.0", path = "../swc_ecma_transforms/", features = ["optimization"]}
swc_ecma_transforms = {version = "0.116.0", path = "../swc_ecma_transforms/", features = ["optimization"]}
swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_base"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/"
edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_preset_env"
version = "0.88.0"
version = "0.89.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -24,7 +24,7 @@ string_enum = {version = "0.3.1", path = "../string_enum"}
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_transforms = {version = "0.115.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]}
swc_ecma_transforms = {version = "0.116.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
walkdir = "2"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.115.4"
version = "0.116.0"
[package.metadata.docs.rs]
all-features = true
@ -29,11 +29,11 @@ swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.58.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.76.2", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.85.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_module = {version = "0.77.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.86.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_proposal = {version = "0.76.0", path = "../swc_ecma_transforms_proposal", optional = true}
swc_ecma_transforms_react = {version = "0.78.0", path = "../swc_ecma_transforms_react", optional = true}
swc_ecma_transforms_typescript = {version = "0.80.0", path = "../swc_ecma_transforms_typescript", optional = true}
swc_ecma_transforms_react = {version = "0.79.0", path = "../swc_ecma_transforms_react", optional = true}
swc_ecma_transforms_typescript = {version = "0.81.0", path = "../swc_ecma_transforms_typescript", optional = true}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
unicode-xid = "0.2"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_module"
repository = "https://github.com/swc-project/swc.git"
version = "0.76.2"
version = "0.77.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_optimization"
repository = "https://github.com/swc-project/swc.git"
version = "0.85.0"
version = "0.86.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
@ -37,9 +37,9 @@ tracing = "0.1.28"
[dev-dependencies]
swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_module = {version = "0.76.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_module = {version = "0.77.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_proposal = {version = "0.76.0", path = "../swc_ecma_transforms_proposal"}
swc_ecma_transforms_react = {version = "0.78.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_react = {version = "0.79.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_testing = {version = "0.60.0", path = "../swc_ecma_transforms_testing"}
swc_ecma_transforms_typescript = {version = "0.80.0", path = "../swc_ecma_transforms_typescript"}
swc_ecma_transforms_typescript = {version = "0.81.0", path = "../swc_ecma_transforms_typescript"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_react"
repository = "https://github.com/swc-project/swc.git"
version = "0.78.0"
version = "0.79.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
@ -32,6 +32,6 @@ swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
[dev-dependencies]
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen/"}
swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms_compat/"}
swc_ecma_transforms_module = {version = "0.76.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_module = {version = "0.77.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_testing = {version = "0.60.0", path = "../swc_ecma_transforms_testing"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_typescript"
repository = "https://github.com/swc-project/swc.git"
version = "0.80.0"
version = "0.81.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
@ -16,7 +16,7 @@ swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.2", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_react = {version = "0.78.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_react = {version = "0.79.0", path = "../swc_ecma_transforms_react"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}

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.112.9"
version = "0.113.0"
[package.metadata.docs.rs]
all-features = true
@ -36,10 +36,10 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.59.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.72.3", path = "../swc_ecma_minifier", optional = true}
swc_ecma_minifier = {version = "0.73.0", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.88.2", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.115.4", path = "../swc_ecma_transforms", optional = true}
swc_ecma_preset_env = {version = "0.89.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.116.0", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.40.0"
version = "0.41.0"
[package.metadata.docs.rs]
all-features = true
@ -29,9 +29,9 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
[dev-dependencies]
pretty_assertions = "0.7.2"
swc = {version = "0.122.0", path = "../swc"}
swc = {version = "0.123.0", path = "../swc"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.115.0", path = "../swc_ecma_transforms/"}
swc_ecma_transforms = {version = "0.116.0", path = "../swc_ecma_transforms/"}
testing = {version = "0.18.0", path = "../testing"}
walkdir = "2"

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.38.0"
version = "0.39.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.40.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.41.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.4.0", path = "../swc_timer"}
tracing = "0.1.29"