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 Dec 1, 2023
1 parent 1e8edb4 commit 98c47df
Show file tree
Hide file tree
Showing 82 changed files with 1,136 additions and 1,626 deletions.
1,252 changes: 381 additions & 871 deletions CHANGELOG.md

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions Cargo.lock

Large diffs are not rendered by default.

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

[lib]
bench = false
Expand Down Expand Up @@ -33,11 +33,11 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.269.75", path = "../swc" }
swc_common = { optional = true, version = "0.33.9", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.226.61", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.96.10", path = "../swc_ecma_visit" }
swc = { optional = true, version = "0.269.76", path = "../swc" }
swc_common = { optional = true, version = "0.33.10", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.226.62", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.96.11", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.71" }
Expand Down
22 changes: 11 additions & 11 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.89.85"
version = "0.89.86"

[[bin]]
bench = false
Expand All @@ -25,18 +25,18 @@ tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
url = "2"

swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_common = { version = "0.33.9", features = [
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.10", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.36", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.73", path = "../swc_ecma_minifier", features = [
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.37", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.74", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.141.28", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.48", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.9", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.11", path = "../swc_timer" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.49", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.10", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.12", path = "../swc_timer" }
12 changes: 6 additions & 6 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.110.28"
version = "0.110.29"

[lib]
bench = false
Expand All @@ -18,13 +18,13 @@ serde-impl = ["serde"]
nom = "7.1.3"
serde = { version = "1", features = ["derive"], optional = true }

swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_common = { version = "0.33.9", path = "../swc_common" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.10", path = "../swc_common" }

[dev-dependencies]
anyhow = "1"
dashmap = "5.4.0"

swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.28", path = "../swc_ecma_parser" }
testing = { version = "0.35.11", path = "../testing" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
testing = { version = "0.35.12", path = "../testing" }
54 changes: 27 additions & 27 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.269.75"
version = "0.269.76"

[lib]
bench = false
Expand Down Expand Up @@ -66,45 +66,45 @@ sourcemap = "6.2"
tracing = "0.1.37"
url = "2.4.0"

swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.18", path = "../swc_cached" }
swc_common = { version = "0.33.9", path = "../swc_common", features = [
swc_common = { version = "0.33.10", path = "../swc_common", features = [
"ahash",
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.3.79", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.3.80", path = "../swc_compiler_base" }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.36", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.110.35", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.89.47", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader", features = [
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.37", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.110.36", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.89.48", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.189.73", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.28", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.203.61", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.226.61", path = "../swc_ecma_transforms", features = [
swc_ecma_minifier = { version = "0.189.74", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.203.62", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.226.62", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "0.134.48", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.160.54", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.195.61", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.34", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.9", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.9", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.39.10", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.104.30", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.11", path = "../swc_timer" }
swc_ecma_transforms_base = { version = "0.134.49", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.160.55", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.195.62", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.35", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.10", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.10", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.39.11", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.104.31", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.12", path = "../swc_timer" }
swc_visit = { version = "0.5.7", path = "../swc_visit" }


Expand All @@ -124,15 +124,15 @@ swc_visit = { version = "0.5.7", path = "../swc_visit" }
ansi_term = "0.12"
criterion = "0.5"
rayon = "1.7.0"
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.89.47", path = "../swc_ecma_lints", features = [
swc_ecma_lints = { version = "0.89.48", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "0.22.11", path = "../swc_ecma_testing" }
swc_ecma_testing = { version = "0.22.12", path = "../swc_ecma_testing" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.11", path = "../testing" }
testing = { version = "0.35.12", path = "../testing" }
walkdir = "2"

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_atoms/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_atoms"
repository = "https://github.com/swc-project/swc.git"
version = "0.6.4"
version = "0.6.5"

[lib]
bench = false
Expand Down
38 changes: 19 additions & 19 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.222.71"
version = "0.222.72"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -37,18 +37,18 @@ rayon = { version = "1", optional = true }
relative-path = "1.2"
tracing = "0.1.37"

swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_common = { version = "0.33.9", path = "../swc_common" }
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.36", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.141.28", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.48", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.195.61", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.34", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.9", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.11", path = "../swc_graph_analyzer/" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.10", path = "../swc_common" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.37", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.49", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.195.62", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.35", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.10", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.12", path = "../swc_graph_analyzer/" }

[dev-dependencies]
hex = "0.4"
Expand All @@ -59,15 +59,15 @@ sha-1 = "0.10"
tempfile = "3.6.0"
url = "2.4.0"

swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.189.73", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.189.74", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.168.58", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.59", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.185.59", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.168.59", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.60", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.185.60", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.11", path = "../testing" }
testing = { version = "0.35.12", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/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_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.82"
version = "0.4.83"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.86.84", features = [
swc_core = { version = "0.86.85", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions 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.33.9"
version = "0.33.10"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -65,7 +65,7 @@ url = "2.4.0"
ast_node = { version = "0.9.5", path = "../ast_node" }
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
from_variant = { version = "0.1.6", path = "../from_variant" }
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_eq_ignore_macros = { version = "0.1.2", path = "../swc_eq_ignore_macros" }
swc_visit = { version = "0.5.7", path = "../swc_visit" }

Expand Down
18 changes: 9 additions & 9 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.79"
version = "0.3.80"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -18,17 +18,17 @@ base64 = "0.13.0"
pathdiff = "0.2.0"
serde = { version = "1.0.188", features = ["derive"] }
sourcemap = "6.2"
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_common = { version = "0.33.9", path = "../swc_common", features = [
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.10", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.36", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.73", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.28", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.11", path = "../swc_timer" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.37", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.74", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.12", path = "../swc_timer" }

[dependencies.napi-derive]
default-features = false
Expand Down
Loading

0 comments on commit 98c47df

Please sign in to comment.