@swc/plugin-noop 7.0.3 → 8.0.1

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,23 @@
1
1
  # @swc/plugin-noop
2
2
 
3
+ ## 8.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d5ce5c: Update swc_core to v28.0.0
8
+
9
+ ## 8.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - cf2636b: Update swc_core to v27
14
+
15
+ ## 7.0.4
16
+
17
+ ### Patch Changes
18
+
19
+ - e3e743d: Update swc_core to v27
20
+
3
21
  ## 7.0.3
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  # @swc/plugin-noop
4
4
 
5
+ ## 8.0.1
6
+
7
+ ### Patch Changes
8
+
9
+ - 8d5ce5c: Update swc_core to v28.0.0
10
+
11
+ ## 8.0.0
12
+
13
+ ### Major Changes
14
+
15
+ - cf2636b: Update swc_core to v27
16
+
17
+ ## 7.0.4
18
+
19
+ ### Patch Changes
20
+
21
+ - e3e743d: Update swc_core to v27
22
+
5
23
  ## 7.0.3
6
24
 
7
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/plugin-noop",
3
- "version": "7.0.3",
3
+ "version": "8.0.1",
4
4
  "description": "Noop SWC plugin, for debugging",
5
5
  "main": "swc_plugin_noop.wasm",
6
6
  "homepage": "https://swc.rs",
Binary file
package/Cargo.toml DELETED
@@ -1,27 +0,0 @@
1
- [package]
2
-
3
- description = "Noop plugin for debugging."
4
-
5
-
6
- authors = { workspace = true }
7
- edition = { workspace = true }
8
- homepage = { workspace = true }
9
- license = { workspace = true }
10
- name = "swc_plugin_noop"
11
- publish = false
12
- repository = { workspace = true }
13
- rust-version = { workspace = true }
14
- version = "0.18.4"
15
-
16
-
17
- [lib]
18
- crate-type = ["cdylib", "rlib"]
19
-
20
- [dependencies]
21
- swc_common = { workspace = true, features = ["concurrent"] }
22
- swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
23
- swc_ecma_ast = { workspace = true }
24
- swc_ecma_utils = { workspace = true }
25
- swc_ecma_visit = { workspace = true }
26
- swc_plugin_macro = { workspace = true }
27
- tracing = { workspace = true, features = ["release_max_level_off"] }