diff --git a/napi/parser/Cargo.toml b/napi/parser/Cargo.toml index 3f78fa865ec608..3cc027c38b635f 100644 --- a/napi/parser/Cargo.toml +++ b/napi/parser/Cargo.toml @@ -26,9 +26,9 @@ oxc_module_lexer = { workspace = true } napi = { workspace = true, features = ["async"] } napi-derive = { workspace = true } +self_cell = "1.0.4" serde_json = { workspace = true } string_wizard = { version = "0.0.22", features = ["source_map"] } -self_cell = "1.0.4" [package.metadata.cargo-shear] ignored = ["napi"] diff --git a/napi/parser/test/magic_string.test.ts b/napi/parser/test/magic_string.test.ts index f00216b99479ca..49e997fead6b4d 100644 --- a/napi/parser/test/magic_string.test.ts +++ b/napi/parser/test/magic_string.test.ts @@ -10,7 +10,7 @@ describe('simple', () => { const oxc = new ParserBuilder(code); const ast = oxc.parseSync({ - sourceFilename: 'test.ts' + sourceFilename: 'test.ts', }).program; const declaration = ast.body[0] as VariableDeclaration;