Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Mar 10, 2022
1 parent 112f428 commit 666f55e
Show file tree
Hide file tree
Showing 18 changed files with 72 additions and 69 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
- **(es/compat)** Add tracing support to remaining compat transforms (#3904) ([bd0a921](https://github.com/swc-project/swc/commit/bd0a9214c3a678a65a814517ffef6c59199ac06b))


- **(es/compat)** Add pure comments for class fields keys (#3939) ([112f428](https://github.com/swc-project/swc/commit/112f4287343c818c28dc9d422c3df78d9f663397))


- **(es/fixer)** Remove extra parens around IIFE in statements (#3918) ([7cfa930](https://github.com/swc-project/swc/commit/7cfa930a629da96b30c2d5021a51d15c0b121013))


Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.145.2"
version = "0.146.0"

[lib]
name = "swc"
Expand Down Expand Up @@ -54,10 +54,10 @@ swc_ecma_codegen = {version = "0.94.0", path = "../swc_ecma_codegen"}
swc_ecma_ext_transforms = {version = "0.57.0", path = "../swc_ecma_ext_transforms"}
swc_ecma_lints = {version = "0.22.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", features = ["cache", "node", "tsc"]}
swc_ecma_minifier = {version = "0.87.0", path = "../swc_ecma_minifier"}
swc_ecma_minifier = {version = "0.88.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.92.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.103.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.129.0", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = {version = "0.104.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.130.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -66,11 +66,11 @@ swc_ecma_transforms = {version = "0.129.0", path = "../swc_ecma_transforms", fea
"typescript",
]}
swc_ecma_transforms_base = {version = "0.66.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.78.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.99.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_transforms_compat = {version = "0.79.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.100.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.71.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.129.0", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.130.0", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.40.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}
Expand Down
10 changes: 5 additions & 5 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.119.0"
version = "0.120.0"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -47,7 +47,7 @@ swc_ecma_codegen = {version = "0.94.0", path = "../swc_ecma_codegen"}
swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader"}
swc_ecma_parser = {version = "0.92.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.66.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_optimization = {version = "0.99.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_transforms_optimization = {version = "0.100.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.71.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
swc_fast_graph = {version = "0.4.0", path = "../swc_fast_graph/"}
Expand All @@ -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.29.0", path = "../swc_ecma_loader", features = ["node", "cache"]}
swc_ecma_minifier = {version = "0.87.0", path = "../swc_ecma_minifier"}
swc_ecma_transforms_react = {version = "0.91.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_typescript = {version = "0.94.0", path = "../swc_ecma_transforms_typescript"}
swc_ecma_minifier = {version = "0.88.0", path = "../swc_ecma_minifier"}
swc_ecma_transforms_react = {version = "0.92.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_typescript = {version = "0.95.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"}
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli"
repository = "https://github.com/swc-project/swc.git"
version = "0.19.0"
version = "0.20.0"

[[bin]]
name = "swc"
Expand All @@ -17,7 +17,7 @@ anyhow = "1.0.53"
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
walkdir = "2"
rayon = "1"
swc = { version = "0.145.0", path = "../swc" }
swc = { version = "0.146.0", path = "../swc" }
swc_common = { version = "0.17.5", path = "../swc_common" }
relative-path = "1.6.1"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_common"
repository = "https://github.com/swc-project/swc.git"
version = "0.17.12"
version = "0.17.13"

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.87.7"
version = "0.88.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -34,7 +34,7 @@ swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.69.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.94.0", path = "../swc_ecma_codegen"}
swc_ecma_parser = {version = "0.92.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.129.0", path = "../swc_ecma_transforms/", features = ["optimization"]}
swc_ecma_transforms = {version = "0.130.0", path = "../swc_ecma_transforms/", features = ["optimization"]}
swc_ecma_transforms_base = {version = "0.66.0", path = "../swc_ecma_transforms_base"}
swc_ecma_utils = {version = "0.71.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.103.0"
version = "0.104.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -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.69.0", path = "../swc_ecma_ast"}
swc_ecma_transforms = {version = "0.129.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]}
swc_ecma_transforms = {version = "0.130.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]}
swc_ecma_utils = {version = "0.71.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}

Expand Down
14 changes: 7 additions & 7 deletions crates/swc_ecma_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.129.0"
version = "0.130.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -27,12 +27,12 @@ swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.69.0", path = "../swc_ecma_ast"}
swc_ecma_transforms_base = {version = "0.66.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.78.0", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.89.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.99.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_proposal = {version = "0.86.0", path = "../swc_ecma_transforms_proposal", optional = true}
swc_ecma_transforms_react = {version = "0.91.0", path = "../swc_ecma_transforms_react", optional = true}
swc_ecma_transforms_typescript = {version = "0.94.0", path = "../swc_ecma_transforms_typescript", optional = true}
swc_ecma_transforms_compat = {version = "0.79.0", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.90.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.100.0", path = "../swc_ecma_transforms_optimization", optional = true}
swc_ecma_transforms_proposal = {version = "0.87.0", path = "../swc_ecma_transforms_proposal", optional = true}
swc_ecma_transforms_react = {version = "0.92.0", path = "../swc_ecma_transforms_react", optional = true}
swc_ecma_transforms_typescript = {version = "0.95.0", path = "../swc_ecma_transforms_typescript", optional = true}
swc_ecma_utils = {version = "0.71.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.78.2"
version = "0.79.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.89.6"
version = "0.90.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand All @@ -28,6 +28,6 @@ swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
tracing = "0.1.32"

[dev-dependencies]
swc_ecma_transforms_compat = {version = "0.78.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_compat = {version = "0.79.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_testing = {version = "0.68.0", path = "../swc_ecma_transforms_testing"}
testing = {version = "0.18.0", path = "../testing/"}
12 changes: 6 additions & 6 deletions crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.99.1"
version = "0.100.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
Expand Down Expand Up @@ -36,10 +36,10 @@ swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
tracing = "0.1.32"

[dev-dependencies]
swc_ecma_transforms_compat = {version = "0.78.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_module = {version = "0.89.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_proposal = {version = "0.86.0", path = "../swc_ecma_transforms_proposal"}
swc_ecma_transforms_react = {version = "0.91.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_compat = {version = "0.79.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_module = {version = "0.90.0", path = "../swc_ecma_transforms_module"}
swc_ecma_transforms_proposal = {version = "0.87.0", path = "../swc_ecma_transforms_proposal"}
swc_ecma_transforms_react = {version = "0.92.0", path = "../swc_ecma_transforms_react"}
swc_ecma_transforms_testing = {version = "0.68.0", path = "../swc_ecma_transforms_testing"}
swc_ecma_transforms_typescript = {version = "0.94.0", path = "../swc_ecma_transforms_typescript"}
swc_ecma_transforms_typescript = {version = "0.95.0", path = "../swc_ecma_transforms_typescript"}
testing = {version = "0.18.0", path = "../testing"}
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_proposal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_proposal"
repository = "https://github.com/swc-project/swc.git"
version = "0.86.0"
version = "0.87.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -31,6 +31,6 @@ swc_ecma_visit = {version = "0.55.0", path = "../swc_ecma_visit"}
[dev-dependencies]
serde_json = "1.0.66"
swc_ecma_parser = {version = "0.92.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_compat = {version = "0.78.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_compat = {version = "0.79.0", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_testing = {version = "0.68.0", path = "../swc_ecma_transforms_testing"}
testing = {version = "0.18.0", path = "../testing"}
Loading

0 comments on commit 666f55e

Please sign in to comment.