@swc/plugin-styled-jsx 1.5.121 → 1.5.124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/Cargo.toml +26 -19
- package/README.md +18 -0
- package/package.json +1 -1
- package/swc_plugin_styled_jsx.wasm +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @swc/plugin-styled-jsx
|
|
2
2
|
|
|
3
|
+
## 1.5.124
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c88b22b: Align package metadata
|
|
8
|
+
|
|
9
|
+
## 1.5.123
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a3cc4fb: Organize pacakge metadata
|
|
14
|
+
|
|
15
|
+
## 1.5.122
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 2277ec2: Apply css compatibility transforms
|
|
20
|
+
|
|
3
21
|
## 1.5.121
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/Cargo.toml
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
[package]
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
description = "SWC Plugin for styled-jsx"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
authors = { workspace = true }
|
|
7
|
+
edition = { workspace = true }
|
|
8
|
+
homepage = { workspace = true }
|
|
9
|
+
license = { workspace = true }
|
|
10
|
+
name = "swc_plugin_styled_jsx"
|
|
11
|
+
publish = false
|
|
12
|
+
repository = { workspace = true }
|
|
13
|
+
rust-version = { workspace = true }
|
|
14
|
+
version = "0.20.4"
|
|
15
|
+
|
|
9
16
|
|
|
10
17
|
[lib]
|
|
11
18
|
crate-type = ["cdylib", "rlib"]
|
|
@@ -14,20 +21,20 @@ crate-type = ["cdylib", "rlib"]
|
|
|
14
21
|
custom_transform = ["swc_common/concurrent"]
|
|
15
22
|
|
|
16
23
|
[dependencies]
|
|
17
|
-
anyhow
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
swc_common
|
|
22
|
-
|
|
23
|
-
|
|
24
|
+
anyhow = "1"
|
|
25
|
+
serde_json = "1"
|
|
26
|
+
styled_jsx = { path = "./transform" }
|
|
27
|
+
swc_atoms = "0.6.5"
|
|
28
|
+
swc_common = "0.33.19"
|
|
29
|
+
swc_core = { version = "0.90.22", features = ["ecma_plugin_transform"] }
|
|
30
|
+
swc_ecma_ast = "0.112.5"
|
|
24
31
|
swc_ecma_minifier = "0.192.17"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
32
|
+
swc_ecma_parser = "0.143.9"
|
|
33
|
+
swc_ecma_utils = "0.127.12"
|
|
34
|
+
swc_ecma_visit = "0.98.6"
|
|
35
|
+
swc_plugin_macro = "0.9.16"
|
|
36
|
+
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
|
|
30
37
|
|
|
31
38
|
[dev-dependencies]
|
|
32
39
|
swc_ecma_transforms_testing = "0.140.15"
|
|
33
|
-
testing
|
|
40
|
+
testing = "0.35.20"
|
package/README.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
# @swc/plugin-styled-jsx
|
|
4
4
|
|
|
5
|
+
## 1.5.124
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- c88b22b: Align package metadata
|
|
10
|
+
|
|
11
|
+
## 1.5.123
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- a3cc4fb: Organize pacakge metadata
|
|
16
|
+
|
|
17
|
+
## 1.5.122
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 2277ec2: Apply css compatibility transforms
|
|
22
|
+
|
|
5
23
|
## 1.5.121
|
|
6
24
|
|
|
7
25
|
### Patch Changes
|
package/package.json
CHANGED
|
Binary file
|