@swc/plugin-formatjs 3.2.2 → 4.0.0

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-formatjs
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - cf2636b: Update swc_core to v27
8
+
9
+ ## 3.2.4
10
+
11
+ ### Patch Changes
12
+
13
+ - e3e743d: Update swc_core to v27
14
+
15
+ ## 3.2.3
16
+
17
+ ### Patch Changes
18
+
19
+ - f226c4b: Generate the same ID after React Compiler
20
+
3
21
  ## 3.2.2
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -4,6 +4,24 @@ FormatJS SWC plugin, maintained by SWC team.
4
4
 
5
5
  # @swc/plugin-formatjs
6
6
 
7
+ ## 4.0.0
8
+
9
+ ### Major Changes
10
+
11
+ - cf2636b: Update swc_core to v27
12
+
13
+ ## 3.2.4
14
+
15
+ ### Patch Changes
16
+
17
+ - e3e743d: Update swc_core to v27
18
+
19
+ ## 3.2.3
20
+
21
+ ### Patch Changes
22
+
23
+ - f226c4b: Generate the same ID after React Compiler
24
+
7
25
  ## 3.2.2
8
26
 
9
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/plugin-formatjs",
3
- "version": "3.2.2",
3
+ "version": "4.0.0",
4
4
  "description": "FormatJS SWC plugin",
5
5
  "main": "swc_plugin_formatjs.wasm",
6
6
  "homepage": "https://swc.rs",
package/src/lib.rs CHANGED
@@ -16,7 +16,7 @@ pub fn process(mut program: Program, metadata: TransformPluginProgramMetadata) -
16
16
  let plugin_options: FormatJSPluginOptions = if let Some(plugin_config) = plugin_config {
17
17
  serde_json::from_str(&plugin_config).unwrap_or_else(|f| {
18
18
  println!("Could not deserialize instrumentation option");
19
- println!("{:#?}", f);
19
+ println!("{f:#?}");
20
20
  Default::default()
21
21
  })
22
22
  } else {
Binary file