From 5589f426f75bfe5666c2b6b01f57dbf2017681dd Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 16:44:16 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- napi/parser/Cargo.toml | 2 +- napi/parser/test/magic_string.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;