diff --git a/helpers/scanner/parsers/plist.ts b/helpers/scanner/parsers/plist-parser.ts similarity index 100% rename from helpers/scanner/parsers/plist.ts rename to helpers/scanner/parsers/plist-parser.ts diff --git a/helpers/scanner/scan.ts b/helpers/scanner/scan.ts index 6015c6b..f718bad 100644 --- a/helpers/scanner/scan.ts +++ b/helpers/scanner/scan.ts @@ -6,7 +6,7 @@ import * as FileApi from './file-api' import type { NodeFile } from './file-api' import { isNonEmptyString, isString } from '../check-types.js' import { extractMachoMeta } from './parsers/macho.js' -import { parsePlistBuffer } from './parsers/plist' +import { parsePlistBuffer } from './parsers/plist-parser' zip.configure({ useWebWorkers: !import.meta.env.SSR diff --git a/test/scanner/plist.test.ts b/test/scanner/plist.test.ts index 529790c..9fe2f5e 100644 --- a/test/scanner/plist.test.ts +++ b/test/scanner/plist.test.ts @@ -10,7 +10,7 @@ import { import { parseFileSync, parsePlistBuffer -} from '~/helpers/scanner/parsers/plist' +} from '~/helpers/scanner/parsers/plist-parser' type ParsedPlist = Record