Skip to content

Commit 132be95

Browse files
authoredFeb 8, 2024
fix(es/plugin): Fix schema version issue (#8621)
1 parent bcb9cdb commit 132be95

File tree

1 file changed

+1
-1
lines changed
  • crates/swc_common/src/plugin

1 file changed

+1
-1
lines changed
 

‎crates/swc_common/src/plugin/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub mod serialized;
2020
* - When removing, or changing existing properties in the AST struct: TBD
2121
*/
2222
#[cfg(feature = "plugin_transform_schema_v1")]
23-
pub const PLUGIN_TRANSFORM_AST_SCHEMA_VERSION: u32 = 2;
23+
pub const PLUGIN_TRANSFORM_AST_SCHEMA_VERSION: u32 = 1;
2424

2525
// Reserved for the testing purpose.
2626
#[cfg(feature = "plugin_transform_schema_vtest")]

0 commit comments

Comments
 (0)
Please sign in to comment.