Skip to content

Commit 03e8a37

Browse files
authored
build: Update swc_core to v0.101.2 (#338)
1 parent 3414164 commit 03e8a37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+512
-341
lines changed

Cargo.lock

+40-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+50
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,56 @@ license = "Apache-2.0"
2828
repository = "https://github.com/swc-project/plugins.git"
2929
rust-version = "1.70"
3030

31+
[workspace.dependencies]
32+
Inflector = "0.11.4"
33+
anyhow = "1.0.83"
34+
base64 = "0.22"
35+
byteorder = "1"
36+
cargo_metadata = "0.18.1"
37+
cipher = "0.4.4"
38+
clap = "4.5.4"
39+
convert_case = "0.6.0"
40+
fxhash = "0.2.1"
41+
handlebars = "5.1.2"
42+
hex = "0.4.3"
43+
lightningcss = "1.0.0-alpha.57"
44+
magic-crypt = "3.1.13"
45+
once_cell = "1.19.0"
46+
parcel_selectors = "0.26.4"
47+
phf = "0.11.2"
48+
preset_env_base = "0.5.1"
49+
radix_fmt = "1"
50+
regex = { version = "1.10.4", default-features = false }
51+
serde = "1.0.203"
52+
serde_json = "1.0.117"
53+
sourcemap = "9.0.0"
54+
swc_atoms = "0.6.7"
55+
swc_cached = "0.3.20"
56+
swc_common = "0.37.3"
57+
swc_core = "0.101.2"
58+
swc_css_ast = "0.144.0"
59+
swc_css_codegen = "0.155.0"
60+
swc_css_compat = "0.31.0"
61+
swc_css_minifier = "0.120.0"
62+
swc_css_parser = "0.154.0"
63+
swc_css_prefixer = "0.158.0"
64+
swc_css_visit = "0.143.4"
65+
swc_ecma_ast = "0.118.1"
66+
swc_ecma_codegen = "0.155.0"
67+
swc_ecma_minifier = "0.203.1"
68+
swc_ecma_parser = "0.149.0"
69+
swc_ecma_transforms = "0.238.0"
70+
swc_ecma_transforms_base = "0.144.0"
71+
swc_ecma_transforms_react = "0.190.0"
72+
swc_ecma_transforms_testing = "0.147.0"
73+
swc_ecma_utils = "0.134.1"
74+
swc_ecma_visit = "0.104.5"
75+
swc_plugin_macro = "0.9.16"
76+
swc_plugin_proxy = "0.47.0"
77+
swc_trace_macro = "0.1.3"
78+
testing = "0.39.0"
79+
tracing = "0.1.40"
80+
3181

3282
[profile.release]
3383
codegen-units = 1

packages/emotion/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-emotion
22

3+
## 3.0.13
4+
5+
### Patch Changes
6+
7+
- 7d17e25: Update swc_core to v0.101.x
8+
39
## 3.0.12
410

511
### Patch Changes

packages/emotion/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ version = "0.18.5"
1515
crate-type = ["cdylib", "rlib"]
1616

1717
[dependencies]
18-
serde = "1"
19-
serde_json = "1.0.117"
20-
swc_common = { version = "0.37.0", features = ["concurrent"] }
21-
swc_core = { version = "0.100.0", features = ["ecma_plugin_transform"] }
22-
swc_ecma_ast = "0.118.0"
23-
swc_ecma_utils = "0.134.0"
24-
swc_ecma_visit = "0.104.0"
18+
serde = { workspace = true }
19+
serde_json = { workspace = true }
20+
swc_common = { workspace = true, features = ["concurrent"] }
21+
swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
22+
swc_ecma_ast = { workspace = true }
23+
swc_ecma_utils = { workspace = true }
24+
swc_ecma_visit = { workspace = true }
2525
swc_emotion = { path = "./transform" }
26-
swc_plugin_macro = "0.9.16"
27-
swc_plugin_proxy = "0.47.0"
28-
tracing = { version = "0.1.40", features = ["release_max_level_off"] }
26+
swc_plugin_macro = { workspace = true }
27+
swc_plugin_proxy = { workspace = true }
28+
tracing = { workspace = true, features = ["release_max_level_off"] }

0 commit comments

Comments
 (0)