@swc/plugin-styled-jsx 7.0.4 → 7.0.6

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @swc/plugin-styled-jsx
2
2
 
3
+ ## 7.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - fa19db4: Fix css handling in lightningcss mode
8
+
9
+ ## 7.0.5
10
+
11
+ ### Patch Changes
12
+
13
+ - 5ddbaeb: Update swc_core to v23
14
+
3
15
  ## 7.0.4
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  # @swc/plugin-styled-jsx
4
4
 
5
+ ## 7.0.6
6
+
7
+ ### Patch Changes
8
+
9
+ - fa19db4: Fix css handling in lightningcss mode
10
+
11
+ ## 7.0.5
12
+
13
+ ### Patch Changes
14
+
15
+ - 5ddbaeb: Update swc_core to v23
16
+
5
17
  ## 7.0.4
6
18
 
7
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/plugin-styled-jsx",
3
- "version": "7.0.4",
3
+ "version": "7.0.6",
4
4
  "description": "SWC plugin for styled-jsx",
5
5
  "main": "swc_plugin_styled_jsx.wasm",
6
6
  "homepage": "https://swc.rs",
Binary file
package/Cargo.toml DELETED
@@ -1,40 +0,0 @@
1
- [package]
2
-
3
- description = "SWC Plugin for styled-jsx"
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
-
16
-
17
- [lib]
18
- crate-type = ["cdylib", "rlib"]
19
-
20
- [features]
21
- custom_transform = ["swc_common/concurrent"]
22
-
23
- [dependencies]
24
- anyhow = { workspace = true }
25
- serde_json = { workspace = true }
26
- styled_jsx = { path = "./transform" }
27
- swc_atoms = { workspace = true }
28
- swc_common = { workspace = true }
29
- swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
30
- swc_ecma_ast = { workspace = true }
31
- swc_ecma_minifier = { workspace = true }
32
- swc_ecma_parser = { workspace = true }
33
- swc_ecma_utils = { workspace = true }
34
- swc_ecma_visit = { workspace = true }
35
- swc_plugin_macro = { workspace = true }
36
- tracing = { workspace = true, features = ["release_max_level_off"] }
37
-
38
- [dev-dependencies]
39
- swc_ecma_transforms_testing = { workspace = true }
40
- testing = { workspace = true }