@formatjs/cli-lib 9.0.2 → 9.0.4
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/{gts_extractor-DoWZ6UQJ.js → gts_extractor-LLrMyDFh.js} +2 -2
- package/{gts_extractor-DoWZ6UQJ.js.map → gts_extractor-LLrMyDFh.js.map} +1 -1
- package/{hbs_extractor-DdiPqGGL.js → hbs_extractor-OLNU6TfH.js} +3 -2
- package/{hbs_extractor-DdiPqGGL.js.map → hbs_extractor-OLNU6TfH.js.map} +1 -1
- package/index.d.ts +3 -3
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +9 -9
- package/parse_script-B0J5TKud.js.map +1 -1
- package/{svelte_extractor-CDMsbv9D.js → svelte_extractor-DDQhqn4P.js} +1 -2
- package/{svelte_extractor-CDMsbv9D.js.map → svelte_extractor-DDQhqn4P.js.map} +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as parseScript } from "./parse_script-B0J5TKud.js";
|
|
2
|
-
import { parseFile as parseFile$1 } from "./hbs_extractor-
|
|
2
|
+
import { parseFile as parseFile$1 } from "./hbs_extractor-OLNU6TfH.js";
|
|
3
3
|
import { Preprocessor } from "content-tag";
|
|
4
4
|
//#region packages/cli-lib/gts_extractor.ts
|
|
5
5
|
let p = new Preprocessor();
|
|
@@ -11,4 +11,4 @@ function parseFile(source, fileName, options) {
|
|
|
11
11
|
//#endregion
|
|
12
12
|
export { parseFile };
|
|
13
13
|
|
|
14
|
-
//# sourceMappingURL=gts_extractor-
|
|
14
|
+
//# sourceMappingURL=gts_extractor-LLrMyDFh.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gts_extractor-
|
|
1
|
+
{"version":3,"file":"gts_extractor-LLrMyDFh.js","names":[],"sources":["../gts_extractor.ts"],"sourcesContent":["import {Preprocessor} from 'content-tag'\nimport {parseFile as parseHbsFile} from '#packages/cli-lib/hbs_extractor.js'\nimport {parseScript} from '#packages/cli-lib/parse_script.js'\nlet p = new Preprocessor()\n\nexport function parseFile(\n source: string,\n fileName: string,\n options: any\n): void {\n const scriptParseFn = parseScript(options, fileName)\n const transformedSource = p.process(source, {filename: fileName})\n\n scriptParseFn(transformedSource.code)\n\n // extract template from transformed source to then run through hbs processor\n const parseResult = p.parse(source, {filename: fileName})\n\n for (let parsed of parseResult) {\n parseHbsFile(parsed.contents, fileName, options)\n }\n}\n"],"mappings":";;;;AAGA,IAAI,IAAI,IAAI,aAAa;AAEzB,SAAgB,UACd,QACA,UACA,SACM;CAIN,YAHkC,SAAS,QAG/B,CAAC,CAFa,EAAE,QAAQ,QAAQ,EAAC,UAAU,SAAQ,CAEjC,CAAC,CAAC,IAAI;CAGpC,MAAM,cAAc,EAAE,MAAM,QAAQ,EAAC,UAAU,SAAQ,CAAC;CAExD,KAAK,IAAI,UAAU,aACjB,YAAa,OAAO,UAAU,UAAU,OAAO;AAEnD"}
|
|
@@ -20,7 +20,8 @@ function extractText(node, fileName, options) {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
function parseFile(source, fileName, options) {
|
|
23
|
-
|
|
23
|
+
const ast = preprocess(source);
|
|
24
|
+
traverse(ast, {
|
|
24
25
|
MustacheStatement(node) {
|
|
25
26
|
extractText(node, fileName, options);
|
|
26
27
|
},
|
|
@@ -32,4 +33,4 @@ function parseFile(source, fileName, options) {
|
|
|
32
33
|
//#endregion
|
|
33
34
|
export { parseFile };
|
|
34
35
|
|
|
35
|
-
//# sourceMappingURL=hbs_extractor-
|
|
36
|
+
//# sourceMappingURL=hbs_extractor-OLNU6TfH.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hbs_extractor-
|
|
1
|
+
{"version":3,"file":"hbs_extractor-OLNU6TfH.js","names":[],"sources":["../hbs_extractor.ts"],"sourcesContent":["import {type Opts} from '@formatjs/ts-transformer'\nimport {preprocess, traverse, type AST, type ASTv1} from '@glimmer/syntax'\n\nfunction extractText(\n node: AST.MustacheStatement | AST.SubExpression,\n fileName: string,\n options: Opts\n) {\n if (!options.onMsgExtracted) return\n if (!options.overrideIdFn) return\n\n if (node.path.type !== 'PathExpression') return\n\n if (['format-message', 'formatMessage'].includes(node.path.original)) {\n let [first, second] = node.params\n\n if (first.type !== 'StringLiteral') return\n\n let message = first?.value\n\n let desc: string | undefined\n if (second?.type === 'StringLiteral') {\n desc = second.value?.trim().replace(/\\s+/gm, ' ')\n }\n\n let defaultMessage = message?.trim().replace(/\\s+/gm, ' ')\n\n let id =\n typeof options.overrideIdFn === 'string'\n ? options.overrideIdFn\n : options.overrideIdFn(undefined, defaultMessage, desc, fileName)\n\n options.onMsgExtracted(fileName, [\n {\n id: id,\n defaultMessage: defaultMessage,\n description: desc,\n },\n ])\n }\n}\n\nexport function parseFile(\n source: string,\n fileName: string,\n options: any\n): void {\n const ast = preprocess(source)\n traverse(ast, {\n MustacheStatement(node: ASTv1.MustacheStatement) {\n extractText(node, fileName, options)\n },\n SubExpression(node: ASTv1.SubExpression) {\n extractText(node, fileName, options)\n },\n })\n}\n"],"mappings":";;AAGA,SAAS,YACP,MACA,UACA,SACA;CACA,IAAI,CAAC,QAAQ,gBAAgB;CAC7B,IAAI,CAAC,QAAQ,cAAc;CAE3B,IAAI,KAAK,KAAK,SAAS,kBAAkB;CAEzC,IAAI,CAAC,kBAAkB,eAAe,CAAC,CAAC,SAAS,KAAK,KAAK,QAAQ,GAAG;EACpE,IAAI,CAAC,OAAO,UAAU,KAAK;EAE3B,IAAI,MAAM,SAAS,iBAAiB;EAEpC,IAAI,UAAU,OAAO;EAErB,IAAI;EACJ,IAAI,QAAQ,SAAS,iBACnB,OAAO,OAAO,OAAO,KAAK,CAAC,CAAC,QAAQ,SAAS,GAAG;EAGlD,IAAI,iBAAiB,SAAS,KAAK,CAAC,CAAC,QAAQ,SAAS,GAAG;EAEzD,IAAI,KACF,OAAO,QAAQ,iBAAiB,WAC5B,QAAQ,eACR,QAAQ,aAAa,KAAA,GAAW,gBAAgB,MAAM,QAAQ;EAEpE,QAAQ,eAAe,UAAU,CAC/B;GACM;GACY;GAChB,aAAa;EACf,CACF,CAAC;CACH;AACF;AAEA,SAAgB,UACd,QACA,UACA,SACM;CACN,MAAM,MAAM,WAAW,MAAM;CAC7B,SAAS,KAAK;EACZ,kBAAkB,MAA+B;GAC/C,YAAY,MAAM,UAAU,OAAO;EACrC;EACA,cAAc,MAA2B;GACvC,YAAY,MAAM,UAAU,OAAO;EACrC;CACF,CAAC;AACH"}
|
package/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ type ExtractOpts = Opts$1 & {
|
|
|
67
67
|
* @returns messages serialized as JSON string since key order
|
|
68
68
|
* matters for some `format`
|
|
69
69
|
*/
|
|
70
|
-
declare function extract(files: readonly string[], extractOpts: ExtractOpts): Promise<string>;
|
|
70
|
+
export declare function extract(files: readonly string[], extractOpts: ExtractOpts): Promise<string>;
|
|
71
71
|
/**
|
|
72
72
|
* Extract strings from source files, also writes to a file.
|
|
73
73
|
* @param files list of files
|
|
@@ -127,7 +127,7 @@ interface Opts {
|
|
|
127
127
|
* @param opts Options
|
|
128
128
|
* @returns serialized result in string format
|
|
129
129
|
*/
|
|
130
|
-
declare function compile(inputFiles: string[], opts?: Opts): Promise<string>;
|
|
130
|
+
export declare function compile(inputFiles: string[], opts?: Opts): Promise<string>;
|
|
131
131
|
/**
|
|
132
132
|
* Compile extracted translation files with the native formatjs CLI binding and
|
|
133
133
|
* write output to `outFile` when provided.
|
|
@@ -137,5 +137,5 @@ declare function compile(inputFiles: string[], opts?: Opts): Promise<string>;
|
|
|
137
137
|
*/
|
|
138
138
|
declare function compileAndWrite(inputFiles: string[], compileOpts?: CompileCLIOpts): Promise<void>;
|
|
139
139
|
//#endregion
|
|
140
|
-
export { type Comparator, type CompileCLIOpts, type CompileFn, type Opts as CompileOpts, type ExtractCLIOptions, type ExtractOpts, type FormatFn, type MessageDescriptor,
|
|
140
|
+
export { type Comparator, type CompileCLIOpts, type CompileFn, type Opts as CompileOpts, type ExtractCLIOptions, type ExtractOpts, type FormatFn, type MessageDescriptor, compileAndWrite, extractAndWrite };
|
|
141
141
|
//# sourceMappingURL=index.d.ts.map
|
package/index.js
CHANGED
|
@@ -306,15 +306,15 @@ async function processFile(source, fn, { idInterpolationPattern, ...opts }) {
|
|
|
306
306
|
parseFile(source, fn, scriptParseFn);
|
|
307
307
|
} else if (fn.endsWith(".svelte")) {
|
|
308
308
|
debug("Processing %s using svelte extractor", fn);
|
|
309
|
-
const { parseFile } = await import("./svelte_extractor-
|
|
309
|
+
const { parseFile } = await import("./svelte_extractor-DDQhqn4P.js");
|
|
310
310
|
parseFile(source, fn, scriptParseFn);
|
|
311
311
|
} else if (fn.endsWith(".hbs")) {
|
|
312
312
|
debug("Processing %s using hbs extractor", fn);
|
|
313
|
-
const { parseFile } = await import("./hbs_extractor-
|
|
313
|
+
const { parseFile } = await import("./hbs_extractor-OLNU6TfH.js");
|
|
314
314
|
parseFile(source, fn, opts);
|
|
315
315
|
} else if (fn.endsWith(".gts") || fn.endsWith(".gjs")) {
|
|
316
316
|
debug("Processing %s as gts/gjs file", fn);
|
|
317
|
-
const { parseFile } = await import("./gts_extractor-
|
|
317
|
+
const { parseFile } = await import("./gts_extractor-LLrMyDFh.js");
|
|
318
318
|
parseFile(source, fn, opts);
|
|
319
319
|
} else {
|
|
320
320
|
debug("Processing %s using typescript extractor", fn);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["format","compile","format","compile","format","compile","format","compile","format","compile","compile","defaultFormatter","transifex","smartling","simple","lokalise","crowdin","require","stringify","BUILTIN_FORMATTERS","isBuiltinFormatter"],"sources":["../formatters/crowdin.ts","../formatters/default.ts","../formatters/lokalise.ts","../formatters/simple.ts","../formatters/smartling.ts","../formatters/transifex.ts","../formatters/index.ts","../native.ts","../extract.ts","../compile.ts"],"sourcesContent":["import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type CrowdinJson = Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<CrowdinJson> = msgs => {\n const results: CrowdinJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<CrowdinJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {type MessageDescriptor} from '@formatjs/ts-transformer'\nexport type FormatFn<T = Record<string, MessageDescriptor>> = (\n msgs: Record<string, MessageDescriptor>\n) => T\n\nexport type CompileFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => Record<string, string>\n\nexport type SerializeFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => string\n\nexport const format: FormatFn = msgs => msgs\n\nexport const compile: CompileFn = msgs => {\n const results: Record<string, string> = {}\n for (const k in msgs) {\n results[k] = msgs[k].defaultMessage!\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n translation: string\n notes?: string\n context?: string\n limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n translation: msg.defaultMessage!,\n notes:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.translation\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type PhraseJson = Record<string, string>\n\nexport const format: FormatFn<PhraseJson> = msgs => {\n return Object.keys(msgs).reduce((all: PhraseJson, k) => {\n all[k] = msgs[k].defaultMessage!\n return all\n }, {})\n}\n\nexport const compile: CompileFn<PhraseJson> = msgs => msgs\n","import type {Comparator} from 'json-stable-stringify'\nimport {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport interface SmartlingDirectives {\n translate_paths: [\n {\n path: string\n key: string\n instruction: string\n },\n ]\n variants_enabled: boolean\n string_format: string\n [k: string]: any\n}\n\nexport type SmartlingJson = {\n smartling: SmartlingDirectives\n} & Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<SmartlingJson> = msgs => {\n const results: SmartlingJson = {\n smartling: {\n translate_paths: [\n {\n path: '*/message',\n key: '{*}/message',\n instruction: '*/description',\n },\n ],\n variants_enabled: true,\n string_format: 'icu',\n },\n } as any\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compareMessages: Comparator = (el1, el2) => {\n // `smartling` has to be the 1st key\n if (el1.key === 'smartling') {\n return -1\n }\n if (el2.key === 'smartling') {\n return 1\n }\n return el1.key < el2.key ? -1 : el1.key === el2.key ? 0 : 1\n}\n\nexport const compile: CompileFn<SmartlingJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n string: string\n developer_comment?: string\n context?: string\n character_limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n string: msg.defaultMessage!,\n developer_comment:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.string\n }\n return results\n}\n","import type {Comparator} from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport * as crowdin from '#packages/cli-lib/formatters/crowdin.js'\nimport * as defaultFormatter from '#packages/cli-lib/formatters/default.js'\nimport {\n type CompileFn,\n type FormatFn,\n type SerializeFn,\n} from '#packages/cli-lib/formatters/default.js'\nimport * as lokalise from '#packages/cli-lib/formatters/lokalise.js'\nimport * as simple from '#packages/cli-lib/formatters/simple.js'\nimport * as smartling from '#packages/cli-lib/formatters/smartling.js'\nimport * as transifex from '#packages/cli-lib/formatters/transifex.js'\n\nexport interface Formatter<T> {\n serialize?: SerializeFn<T>\n format: FormatFn<T>\n compile: CompileFn<T>\n compareMessages?: Comparator\n}\n\nexport async function resolveBuiltinFormatter(\n format?: string | Formatter<unknown>\n): Promise<any> {\n if (!format) {\n return defaultFormatter\n }\n if (typeof format !== 'string') {\n return format\n }\n switch (format) {\n case 'transifex':\n return transifex\n case 'smartling':\n return smartling\n case 'simple':\n return simple\n case 'lokalise':\n return lokalise\n case 'crowdin':\n return crowdin\n }\n try {\n // eslint-disable-next-line import/dynamic-import-chunkname\n return import(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n","import {createRequire} from 'module'\n\nconst require = createRequire(import.meta.url)\n\nconst NATIVE_PACKAGES: Record<string, string[]> = {\n 'darwin-arm64': ['@formatjs/cli-native-darwin-arm64'],\n 'linux-arm64': [\n '@formatjs/cli-native-linux-arm64',\n '@formatjs/cli-native-linux-arm64-musl',\n ],\n 'linux-x64': [\n '@formatjs/cli-native-linux-x64',\n '@formatjs/cli-native-linux-x64-musl',\n ],\n 'win32-x64': ['@formatjs/cli-native-win32-x64'],\n}\n\nexport interface NativeCompileOptions {\n ast?: boolean\n format?: string\n ignoreTag?: boolean\n pseudoLocale?: string\n skipErrors?: boolean\n followLinks?: boolean\n}\n\nexport interface NativeCompileMessage {\n id: string\n message: string\n sourceFile: string\n}\n\nexport interface NativeExtractOptions {\n additionalComponentNames?: string[]\n additionalFunctionNames?: string[]\n extractSourceLocation?: boolean\n flatten?: boolean\n followLinks?: boolean\n format?: string\n idInterpolationPattern?: string\n ignore?: string[]\n inFile?: string\n pragma?: string\n preserveWhitespace?: boolean\n throws?: boolean\n}\n\nexport interface NativeBinding {\n compile(inputFiles: string[], opts?: NativeCompileOptions): string\n compileMessages(\n messages: NativeCompileMessage[],\n opts?: NativeCompileOptions\n ): string\n extract(inputFiles: string[], opts?: NativeExtractOptions): string\n supportedBuiltinFormatters(): string[]\n}\n\nlet nativeBinding: NativeBinding | null | undefined\n\nexport function getInstalledNativePackageCandidates(\n candidates: readonly string[],\n canResolve = (candidate: string): boolean => {\n try {\n require.resolve(candidate)\n return true\n } catch {\n return false\n }\n }\n): string[] {\n return candidates.filter(canResolve)\n}\n\nexport function getNativePackageCandidates(\n platform: NodeJS.Platform = process.platform,\n arch: string = process.arch\n): string[] {\n const platformArch = `${platform}-${arch}`\n return NATIVE_PACKAGES[platformArch] || []\n}\n\nexport function loadNative(): NativeBinding {\n if (nativeBinding !== undefined) {\n if (nativeBinding) {\n return nativeBinding\n }\n throw new Error('Native @formatjs/cli-lib binding is unavailable')\n }\n\n const overridePath = process.env.FORMATJS_CLI_LIB_NATIVE_PATH\n const packageCandidates = getNativePackageCandidates()\n const installedPackageCandidates =\n getInstalledNativePackageCandidates(packageCandidates)\n const candidates = [\n overridePath,\n ...(installedPackageCandidates.length\n ? installedPackageCandidates\n : packageCandidates),\n ].filter(Boolean) as string[]\n const loadErrors: string[] = []\n\n for (const candidate of candidates) {\n try {\n nativeBinding = require(candidate) as NativeBinding\n return nativeBinding\n } catch (e) {\n loadErrors.push(`${candidate}: ${(e as Error).message}`)\n }\n }\n\n nativeBinding = null\n throw new Error(\n `Native @formatjs/cli-lib binding is unavailable.\\n${loadErrors.join('\\n')}`\n )\n}\n\nexport function compileWithNative(\n inputFiles: string[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compile(inputFiles, {\n ast: opts.ast,\n format: opts.format,\n followLinks: opts.followLinks,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function compileMessagesWithNative(\n messages: NativeCompileMessage[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compileMessages(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function extractWithNative(\n inputFiles: readonly string[],\n opts: NativeExtractOptions = {}\n): string {\n const native = loadNative()\n return native.extract([...inputFiles], {\n additionalComponentNames: opts.additionalComponentNames,\n additionalFunctionNames: opts.additionalFunctionNames,\n extractSourceLocation: opts.extractSourceLocation,\n flatten: opts.flatten,\n followLinks: opts.followLinks,\n format: opts.format,\n idInterpolationPattern: opts.idInterpolationPattern,\n ignore: opts.ignore,\n inFile: opts.inFile,\n pragma: opts.pragma,\n preserveWhitespace: opts.preserveWhitespace,\n throws: opts.throws,\n })\n}\n","import {\n type MessageDescriptor,\n type Opts,\n interpolateName,\n} from '@formatjs/ts-transformer'\nimport {existsSync} from 'fs'\nimport {outputFile} from 'fs-extra/esm'\nimport {\n debug,\n getStdinAsString,\n warn,\n writeStdout,\n} from '#packages/cli-lib/console_utils.js'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {extname} from 'path'\n\nimport {\n type Formatter,\n resolveBuiltinFormatter,\n} from '#packages/cli-lib/formatters/index.js'\nimport {extractWithNative} from '#packages/cli-lib/native.js'\nimport {parseScript} from '#packages/cli-lib/parse_script.js'\nimport {readFile} from 'fs/promises'\n\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\nconst NATIVE_SUPPORTED_EXTENSIONS = new Set([\n '.cjs',\n '.js',\n '.jsx',\n '.mjs',\n '.ts',\n '.tsx',\n])\nexport interface ExtractionResult<M = Record<string, string>> {\n /**\n * List of extracted messages\n */\n messages: MessageDescriptor[]\n /**\n * Metadata extracted w/ `pragma`\n */\n meta?: M\n}\n\nexport interface ExtractedMessageDescriptor extends MessageDescriptor {\n /**\n * Line number\n */\n line?: number\n /**\n * Column number\n */\n col?: number\n /**\n * Metadata extracted from pragma\n */\n meta?: Record<string, string>\n}\n\nexport type ExtractCLIOptions = Omit<\n ExtractOpts,\n 'overrideIdFn' | 'onMsgExtracted' | 'onMetaExtracted'\n> & {\n /**\n * Output File\n */\n outFile?: string\n /**\n * Input File\n */\n inFile?: string\n /**\n * Ignore file glob pattern\n */\n ignore?: string[]\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\nexport type ExtractOpts = Opts & {\n /**\n * Whether to throw an error if we had any issues with\n * 1 of the source files\n */\n throws?: boolean\n /**\n * Message ID interpolation pattern\n */\n idInterpolationPattern?: string\n /**\n * Whether we read from stdin instead of a file\n */\n readFromStdin?: boolean\n /**\n * Either path to a formatter file that controls the shape of JSON file from `outFile` or {@link Formatter} object.\n */\n format?: string | Formatter<any>\n /**\n * Whether to hoist selectors & flatten sentences\n */\n flatten?: boolean\n /**\n * An AbortSignal to cancel the extraction\n */\n signal?: AbortSignal\n} & Pick<Opts, 'onMsgExtracted' | 'onMetaExtracted'>\n\nfunction calculateLineColFromOffset(\n text: string,\n start?: number\n): Pick<ExtractedMessageDescriptor, 'line' | 'col'> {\n if (!start) {\n return {line: 1, col: 1}\n }\n const chunk = text.slice(0, start)\n const lines = chunk.split('\\n')\n const lastLine = lines[lines.length - 1]\n return {line: lines.length, col: lastLine.length}\n}\n\nfunction isBuiltinFormatter(\n format: ExtractOpts['format']\n): format is string | undefined {\n return (\n !format || (typeof format === 'string' && BUILTIN_FORMATTERS.has(format))\n )\n}\n\nfunction canExtractWithNative(\n files: readonly string[],\n opts: Omit<ExtractOpts, 'readFromStdin' | 'signal' | 'throws'>,\n readFromStdin: boolean | undefined\n): boolean {\n return (\n !readFromStdin &&\n typeof opts.idInterpolationPattern === 'string' &&\n !opts.ast &&\n !opts.extractSourceLocation &&\n !opts.onMetaExtracted &&\n !opts.onMsgError &&\n !opts.onMsgExtracted &&\n !opts.overrideIdFn &&\n !opts.pragma &&\n !opts.removeDefaultMessage &&\n isBuiltinFormatter(opts.format) &&\n files.every(\n file =>\n existsSync(file) &&\n NATIVE_SUPPORTED_EXTENSIONS.has(extname(file).toLowerCase())\n )\n )\n}\n\nasync function processFile(\n source: string,\n fn: string,\n {idInterpolationPattern, ...opts}: Opts & {idInterpolationPattern?: string}\n) {\n let messages: ExtractedMessageDescriptor[] = []\n let meta: Record<string, string> | undefined\n\n const onMsgExtracted = opts.onMsgExtracted\n const onMetaExtracted = opts.onMetaExtracted\n\n opts = {\n ...opts,\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n onMsgExtracted(filePath, msgs) {\n if (opts.extractSourceLocation) {\n msgs = msgs.map(msg => ({\n ...msg,\n ...calculateLineColFromOffset(source, msg.start),\n }))\n }\n messages = messages.concat(msgs)\n\n if (onMsgExtracted) {\n onMsgExtracted(filePath, msgs)\n }\n },\n onMetaExtracted(filePath, m) {\n meta = m\n\n if (onMetaExtracted) {\n onMetaExtracted(filePath, m)\n }\n },\n }\n\n if (!opts.overrideIdFn && idInterpolationPattern) {\n opts = {\n ...opts,\n overrideIdFn: (id, defaultMessage, description, fileName) =>\n id ||\n interpolateName(\n {\n resourcePath: fileName,\n } as any,\n idInterpolationPattern,\n {\n content: description\n ? `${defaultMessage}#${\n typeof description === 'string'\n ? description\n : stringify(description)\n }`\n : defaultMessage,\n }\n ),\n }\n }\n\n debug('Processing opts for %s: %s', fn, opts)\n\n const scriptParseFn = parseScript(opts, fn)\n if (fn.endsWith('.vue')) {\n debug('Processing %s using vue extractor', fn)\n const {parseFile} = await import('./vue_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.svelte')) {\n debug('Processing %s using svelte extractor', fn)\n const {parseFile} = await import('./svelte_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.hbs')) {\n debug('Processing %s using hbs extractor', fn)\n const {parseFile} = await import('./hbs_extractor.js')\n parseFile(source, fn, opts)\n } else if (fn.endsWith('.gts') || fn.endsWith('.gjs')) {\n debug('Processing %s as gts/gjs file', fn)\n const {parseFile} = await import('./gts_extractor.js')\n parseFile(source, fn, opts)\n } else {\n debug('Processing %s using typescript extractor', fn)\n scriptParseFn(source)\n }\n debug('Done extracting %s messages: %s', fn, messages)\n if (meta) {\n debug('Extracted meta:', meta)\n messages.forEach(m => (m.meta = meta))\n }\n return {messages, meta}\n}\n\n/**\n * Extract strings from source files\n * @param files list of files\n * @param extractOpts extract options\n * @returns messages serialized as JSON string since key order\n * matters for some `format`\n */\nexport async function extract(\n files: readonly string[],\n extractOpts: ExtractOpts\n): Promise<string> {\n const {throws, readFromStdin, signal, ...opts} = extractOpts\n // When throws is not explicitly true, we want to collect partial results\n const shouldThrow = throws === true\n // Pass throws option to transformer for per-message error handling\n const optsWithThrows = {\n ...opts,\n throws: shouldThrow,\n onMsgError: !shouldThrow\n ? (_: string, e: Error) => warn(e.message)\n : undefined,\n }\n\n if (!signal?.aborted && canExtractWithNative(files, opts, readFromStdin)) {\n return extractWithNative(files, {\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n additionalFunctionNames: opts.additionalFunctionNames,\n flatten: opts.flatten,\n format: typeof opts.format === 'string' ? opts.format : undefined,\n idInterpolationPattern: opts.idInterpolationPattern,\n preserveWhitespace: opts.preserveWhitespace,\n throws: shouldThrow,\n })\n }\n\n let rawResults: Array<ExtractionResult | undefined> = []\n try {\n if (readFromStdin) {\n debug(`Reading input from stdin`)\n // Read from stdin\n if (process.stdin.isTTY) {\n warn('Reading source file from TTY.')\n }\n const stdinSource = await getStdinAsString()\n rawResults = [await processFile(stdinSource, 'dummy', optsWithThrows)]\n } else {\n // Use Promise.allSettled when throws is not explicitly true to collect partial results\n if (!shouldThrow) {\n const settledResults = await Promise.allSettled(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n rawResults = settledResults.map(result => {\n if (result.status === 'fulfilled') {\n return result.value\n } else {\n warn(String(result.reason))\n return undefined\n }\n })\n } else {\n rawResults = await Promise.all(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n }\n }\n } catch (e) {\n if (shouldThrow) {\n throw e\n } else {\n warn(String(e))\n }\n }\n\n const formatter: Formatter<unknown> = await resolveBuiltinFormatter(\n opts.format\n )\n const extractionResults = rawResults.filter((r): r is ExtractionResult => !!r)\n\n const extractedMessages = new Map<string, MessageDescriptor>()\n\n for (const {messages} of extractionResults) {\n for (const message of messages) {\n const {id, description, defaultMessage} = message\n if (!id) {\n const error = new Error(\n `[FormatJS CLI] Missing message id for message:\n${JSON.stringify(message, undefined, 2)}`\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n continue\n }\n\n if (extractedMessages.has(id)) {\n const existing = extractedMessages.get(id)!\n if (\n stringify(description) !== stringify(existing.description) ||\n defaultMessage !== existing.defaultMessage\n ) {\n const error = new Error(\n `[FormatJS CLI] Duplicate message id: \"${id}\", ` +\n 'but the `description` and/or `defaultMessage` are different.'\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n }\n }\n extractedMessages.set(id, message)\n }\n }\n const results: Record<string, Omit<MessageDescriptor, 'id'>> = {}\n const messages = Array.from(extractedMessages.values())\n for (const {id, ...msg} of messages) {\n // GH #3537: flatten is now applied during extraction in the babel plugin,\n // so we don't need to apply it again here. The messages are already flattened.\n results[id] = msg\n }\n if (typeof formatter.serialize === 'function') {\n return formatter.serialize(formatter.format(results as any))\n }\n return (\n stringify(formatter.format(results as any), {\n space: 2,\n cmp: formatter.compareMessages || undefined,\n }) ?? ''\n )\n}\n\n/**\n * Extract strings from source files, also writes to a file.\n * @param files list of files\n * @param extractOpts extract options\n * @returns A Promise that resolves if output file was written successfully\n */\nexport default async function extractAndWrite(\n files: readonly string[],\n extractOpts: ExtractCLIOptions\n): Promise<void> {\n const {outFile, ...opts} = extractOpts\n const serializedResult = (await extract(files, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n","import {outputFile} from 'fs-extra/esm'\nimport {readFile} from 'fs/promises'\nimport glob from 'fast-glob'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport {debug, warn, writeStdout} from '#packages/cli-lib/console_utils.js'\nimport {type Formatter} from '#packages/cli-lib/formatters/index.js'\nimport {\n type NativeCompileMessage,\n compileMessagesWithNative,\n compileWithNative,\n} from '#packages/cli-lib/native.js'\n\nconst dynamicImport = new Function('specifier', 'return import(specifier)') as (\n specifier: string\n) => Promise<Formatter<unknown>>\nconst globSync = glob.sync\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING =\n 'Passing a custom formatter file to --format during compilation is deprecated and will be removed in a future release. Prefer a built-in formatter name or pre-process translation files before running formatjs compile.'\n\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\n\nexport type PseudoLocale = 'xx-LS' | 'xx-AC' | 'xx-HA' | 'en-XA' | 'en-XB'\n\nexport interface CompileCLIOpts extends Opts {\n /**\n * The target file that contains compiled messages.\n */\n outFile?: string\n}\n\nexport interface Opts {\n /**\n * Whether to compile message into AST instead of just string\n */\n ast?: boolean\n /**\n * Whether to continue compiling messages after encountering an error.\n * Any keys with errors will not be included in the output file.\n */\n skipErrors?: boolean\n /**\n * Built-in formatter name or path to a formatter file that converts\n * <translation_files> to `Record<string, string>` so we can compile.\n * Formatter file paths are deprecated for compilation.\n */\n format?: string | Formatter<unknown>\n /**\n * Whether to compile to pseudo locale\n */\n pseudoLocale?: PseudoLocale\n /**\n * Whether the parser to treat HTML/XML tags as string literal\n * instead of parsing them as tag token.\n * When this is false we only allow simple tags without\n * any attributes\n */\n ignoreTag?: boolean\n /**\n * An AbortSignal to cancel the compilation before invoking native code.\n */\n signal?: AbortSignal\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding.\n * @param inputFiles Input files or glob patterns\n * @param opts Options\n * @returns serialized result in string format\n */\nexport async function compile(\n inputFiles: string[],\n opts: Opts = {}\n): Promise<string> {\n debug('Compiling files:', inputFiles)\n const {\n ast,\n format,\n pseudoLocale,\n skipErrors,\n ignoreTag,\n signal,\n followLinks,\n } = opts\n signal?.throwIfAborted()\n\n if (format && !isBuiltinFormatter(format)) {\n return compileWithCustomFormatter(inputFiles, opts)\n }\n\n return compileWithNative(inputFiles, {\n ast,\n format: typeof format === 'string' ? format : undefined,\n followLinks,\n ignoreTag,\n pseudoLocale,\n skipErrors,\n })\n}\n\nfunction isBuiltinFormatter(\n format: string | Formatter<unknown>\n): format is string {\n return typeof format === 'string' && BUILTIN_FORMATTERS.has(format)\n}\n\nasync function compileWithCustomFormatter(\n inputFiles: string[],\n opts: Opts\n): Promise<string> {\n if (typeof opts.format === 'string') {\n await warn(CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING)\n }\n\n const formatter = await resolveCustomFormatter(opts.format)\n const files = globSync(inputFiles, {\n followSymbolicLinks: opts.followLinks ?? true,\n })\n\n if (!files.length) {\n throw new Error('No translation files found matching the patterns')\n }\n\n const messages: NativeCompileMessage[] = []\n await Promise.all(\n files.map(async file => {\n opts.signal?.throwIfAborted()\n const content = await readFile(file, {\n encoding: 'utf8',\n signal: opts.signal,\n })\n const compiled = formatter.compile(JSON.parse(content))\n for (const id of Object.keys(compiled)) {\n messages.push({\n id,\n message: compiled[id],\n sourceFile: file,\n })\n }\n })\n )\n\n const serialized = compileMessagesWithNative(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n\n if (formatter.compareMessages) {\n return (\n stringify(JSON.parse(serialized), {\n space: 2,\n cmp: formatter.compareMessages,\n }) ?? ''\n )\n }\n\n return serialized\n}\n\nasync function resolveCustomFormatter(\n format: string | Formatter<unknown> | undefined\n): Promise<Formatter<unknown>> {\n if (!format) {\n throw new Error('A custom formatter is required')\n }\n if (typeof format !== 'string') {\n return format\n }\n try {\n return dynamicImport(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding and\n * write output to `outFile` when provided.\n * @param inputFiles Input files or glob patterns\n * @param compileOpts options\n * @returns A `Promise` that resolves if file was written successfully\n */\nexport default async function compileAndWrite(\n inputFiles: string[],\n compileOpts: CompileCLIOpts = {}\n): Promise<void> {\n const {outFile, ...opts} = compileOpts\n const serializedResult = (await compile(inputFiles, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["format","compile","format","compile","format","compile","format","compile","format","compile","compile","defaultFormatter","transifex","smartling","simple","lokalise","crowdin","require","stringify","BUILTIN_FORMATTERS","isBuiltinFormatter"],"sources":["../formatters/crowdin.ts","../formatters/default.ts","../formatters/lokalise.ts","../formatters/simple.ts","../formatters/smartling.ts","../formatters/transifex.ts","../formatters/index.ts","../native.ts","../extract.ts","../compile.ts"],"sourcesContent":["import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type CrowdinJson = Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<CrowdinJson> = msgs => {\n const results: CrowdinJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<CrowdinJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {type MessageDescriptor} from '@formatjs/ts-transformer'\nexport type FormatFn<T = Record<string, MessageDescriptor>> = (\n msgs: Record<string, MessageDescriptor>\n) => T\n\nexport type CompileFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => Record<string, string>\n\nexport type SerializeFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => string\n\nexport const format: FormatFn = msgs => msgs\n\nexport const compile: CompileFn = msgs => {\n const results: Record<string, string> = {}\n for (const k in msgs) {\n results[k] = msgs[k].defaultMessage!\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n translation: string\n notes?: string\n context?: string\n limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n translation: msg.defaultMessage!,\n notes:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.translation\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type PhraseJson = Record<string, string>\n\nexport const format: FormatFn<PhraseJson> = msgs => {\n return Object.keys(msgs).reduce((all: PhraseJson, k) => {\n all[k] = msgs[k].defaultMessage!\n return all\n }, {})\n}\n\nexport const compile: CompileFn<PhraseJson> = msgs => msgs\n","import type {Comparator} from 'json-stable-stringify'\nimport {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport interface SmartlingDirectives {\n translate_paths: [\n {\n path: string\n key: string\n instruction: string\n },\n ]\n variants_enabled: boolean\n string_format: string\n [k: string]: any\n}\n\nexport type SmartlingJson = {\n smartling: SmartlingDirectives\n} & Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<SmartlingJson> = msgs => {\n const results: SmartlingJson = {\n smartling: {\n translate_paths: [\n {\n path: '*/message',\n key: '{*}/message',\n instruction: '*/description',\n },\n ],\n variants_enabled: true,\n string_format: 'icu',\n },\n } as any\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compareMessages: Comparator = (el1, el2) => {\n // `smartling` has to be the 1st key\n if (el1.key === 'smartling') {\n return -1\n }\n if (el2.key === 'smartling') {\n return 1\n }\n return el1.key < el2.key ? -1 : el1.key === el2.key ? 0 : 1\n}\n\nexport const compile: CompileFn<SmartlingJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n string: string\n developer_comment?: string\n context?: string\n character_limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n string: msg.defaultMessage!,\n developer_comment:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.string\n }\n return results\n}\n","import type {Comparator} from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport * as crowdin from '#packages/cli-lib/formatters/crowdin.js'\nimport * as defaultFormatter from '#packages/cli-lib/formatters/default.js'\nimport {\n type CompileFn,\n type FormatFn,\n type SerializeFn,\n} from '#packages/cli-lib/formatters/default.js'\nimport * as lokalise from '#packages/cli-lib/formatters/lokalise.js'\nimport * as simple from '#packages/cli-lib/formatters/simple.js'\nimport * as smartling from '#packages/cli-lib/formatters/smartling.js'\nimport * as transifex from '#packages/cli-lib/formatters/transifex.js'\n\nexport interface Formatter<T> {\n serialize?: SerializeFn<T>\n format: FormatFn<T>\n compile: CompileFn<T>\n compareMessages?: Comparator\n}\n\nexport async function resolveBuiltinFormatter(\n format?: string | Formatter<unknown>\n): Promise<any> {\n if (!format) {\n return defaultFormatter\n }\n if (typeof format !== 'string') {\n return format\n }\n switch (format) {\n case 'transifex':\n return transifex\n case 'smartling':\n return smartling\n case 'simple':\n return simple\n case 'lokalise':\n return lokalise\n case 'crowdin':\n return crowdin\n }\n try {\n // eslint-disable-next-line import/dynamic-import-chunkname\n return import(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n","import {createRequire} from 'module'\n\nconst require = createRequire(import.meta.url)\n\nconst NATIVE_PACKAGES: Record<string, string[]> = {\n 'darwin-arm64': ['@formatjs/cli-native-darwin-arm64'],\n 'linux-arm64': [\n '@formatjs/cli-native-linux-arm64',\n '@formatjs/cli-native-linux-arm64-musl',\n ],\n 'linux-x64': [\n '@formatjs/cli-native-linux-x64',\n '@formatjs/cli-native-linux-x64-musl',\n ],\n 'win32-x64': ['@formatjs/cli-native-win32-x64'],\n}\n\nexport interface NativeCompileOptions {\n ast?: boolean\n format?: string\n ignoreTag?: boolean\n pseudoLocale?: string\n skipErrors?: boolean\n followLinks?: boolean\n}\n\nexport interface NativeCompileMessage {\n id: string\n message: string\n sourceFile: string\n}\n\nexport interface NativeExtractOptions {\n additionalComponentNames?: string[]\n additionalFunctionNames?: string[]\n extractSourceLocation?: boolean\n flatten?: boolean\n followLinks?: boolean\n format?: string\n idInterpolationPattern?: string\n ignore?: string[]\n inFile?: string\n pragma?: string\n preserveWhitespace?: boolean\n throws?: boolean\n}\n\nexport interface NativeBinding {\n compile(inputFiles: string[], opts?: NativeCompileOptions): string\n compileMessages(\n messages: NativeCompileMessage[],\n opts?: NativeCompileOptions\n ): string\n extract(inputFiles: string[], opts?: NativeExtractOptions): string\n supportedBuiltinFormatters(): string[]\n}\n\nlet nativeBinding: NativeBinding | null | undefined\n\nexport function getInstalledNativePackageCandidates(\n candidates: readonly string[],\n canResolve = (candidate: string): boolean => {\n try {\n require.resolve(candidate)\n return true\n } catch {\n return false\n }\n }\n): string[] {\n return candidates.filter(canResolve)\n}\n\nexport function getNativePackageCandidates(\n platform: NodeJS.Platform = process.platform,\n arch: string = process.arch\n): string[] {\n const platformArch = `${platform}-${arch}`\n return NATIVE_PACKAGES[platformArch] || []\n}\n\nexport function loadNative(): NativeBinding {\n if (nativeBinding !== undefined) {\n if (nativeBinding) {\n return nativeBinding\n }\n throw new Error('Native @formatjs/cli-lib binding is unavailable')\n }\n\n const overridePath = process.env.FORMATJS_CLI_LIB_NATIVE_PATH\n const packageCandidates = getNativePackageCandidates()\n const installedPackageCandidates =\n getInstalledNativePackageCandidates(packageCandidates)\n const candidates = [\n overridePath,\n ...(installedPackageCandidates.length\n ? installedPackageCandidates\n : packageCandidates),\n ].filter(Boolean) as string[]\n const loadErrors: string[] = []\n\n for (const candidate of candidates) {\n try {\n nativeBinding = require(candidate) as NativeBinding\n return nativeBinding\n } catch (e) {\n loadErrors.push(`${candidate}: ${(e as Error).message}`)\n }\n }\n\n nativeBinding = null\n throw new Error(\n `Native @formatjs/cli-lib binding is unavailable.\\n${loadErrors.join('\\n')}`\n )\n}\n\nexport function compileWithNative(\n inputFiles: string[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compile(inputFiles, {\n ast: opts.ast,\n format: opts.format,\n followLinks: opts.followLinks,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function compileMessagesWithNative(\n messages: NativeCompileMessage[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compileMessages(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function extractWithNative(\n inputFiles: readonly string[],\n opts: NativeExtractOptions = {}\n): string {\n const native = loadNative()\n return native.extract([...inputFiles], {\n additionalComponentNames: opts.additionalComponentNames,\n additionalFunctionNames: opts.additionalFunctionNames,\n extractSourceLocation: opts.extractSourceLocation,\n flatten: opts.flatten,\n followLinks: opts.followLinks,\n format: opts.format,\n idInterpolationPattern: opts.idInterpolationPattern,\n ignore: opts.ignore,\n inFile: opts.inFile,\n pragma: opts.pragma,\n preserveWhitespace: opts.preserveWhitespace,\n throws: opts.throws,\n })\n}\n","import {\n type MessageDescriptor,\n type Opts,\n interpolateName,\n} from '@formatjs/ts-transformer'\nimport {existsSync} from 'fs'\nimport {outputFile} from 'fs-extra/esm'\nimport {\n debug,\n getStdinAsString,\n warn,\n writeStdout,\n} from '#packages/cli-lib/console_utils.js'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {extname} from 'path'\n\nimport {\n type Formatter,\n resolveBuiltinFormatter,\n} from '#packages/cli-lib/formatters/index.js'\nimport {extractWithNative} from '#packages/cli-lib/native.js'\nimport {parseScript} from '#packages/cli-lib/parse_script.js'\nimport {readFile} from 'fs/promises'\n\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\nconst NATIVE_SUPPORTED_EXTENSIONS = new Set([\n '.cjs',\n '.js',\n '.jsx',\n '.mjs',\n '.ts',\n '.tsx',\n])\nexport interface ExtractionResult<M = Record<string, string>> {\n /**\n * List of extracted messages\n */\n messages: MessageDescriptor[]\n /**\n * Metadata extracted w/ `pragma`\n */\n meta?: M\n}\n\nexport interface ExtractedMessageDescriptor extends MessageDescriptor {\n /**\n * Line number\n */\n line?: number\n /**\n * Column number\n */\n col?: number\n /**\n * Metadata extracted from pragma\n */\n meta?: Record<string, string>\n}\n\nexport type ExtractCLIOptions = Omit<\n ExtractOpts,\n 'overrideIdFn' | 'onMsgExtracted' | 'onMetaExtracted'\n> & {\n /**\n * Output File\n */\n outFile?: string\n /**\n * Input File\n */\n inFile?: string\n /**\n * Ignore file glob pattern\n */\n ignore?: string[]\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\nexport type ExtractOpts = Opts & {\n /**\n * Whether to throw an error if we had any issues with\n * 1 of the source files\n */\n throws?: boolean\n /**\n * Message ID interpolation pattern\n */\n idInterpolationPattern?: string\n /**\n * Whether we read from stdin instead of a file\n */\n readFromStdin?: boolean\n /**\n * Either path to a formatter file that controls the shape of JSON file from `outFile` or {@link Formatter} object.\n */\n format?: string | Formatter<any>\n /**\n * Whether to hoist selectors & flatten sentences\n */\n flatten?: boolean\n /**\n * An AbortSignal to cancel the extraction\n */\n signal?: AbortSignal\n} & Pick<Opts, 'onMsgExtracted' | 'onMetaExtracted'>\n\nfunction calculateLineColFromOffset(\n text: string,\n start?: number\n): Pick<ExtractedMessageDescriptor, 'line' | 'col'> {\n if (!start) {\n return {line: 1, col: 1}\n }\n const chunk = text.slice(0, start)\n const lines = chunk.split('\\n')\n const lastLine = lines[lines.length - 1]\n return {line: lines.length, col: lastLine.length}\n}\n\nfunction isBuiltinFormatter(\n format: ExtractOpts['format']\n): format is string | undefined {\n return (\n !format || (typeof format === 'string' && BUILTIN_FORMATTERS.has(format))\n )\n}\n\nfunction canExtractWithNative(\n files: readonly string[],\n opts: Omit<ExtractOpts, 'readFromStdin' | 'signal' | 'throws'>,\n readFromStdin: boolean | undefined\n): boolean {\n return (\n !readFromStdin &&\n typeof opts.idInterpolationPattern === 'string' &&\n !opts.ast &&\n !opts.extractSourceLocation &&\n !opts.onMetaExtracted &&\n !opts.onMsgError &&\n !opts.onMsgExtracted &&\n !opts.overrideIdFn &&\n !opts.pragma &&\n !opts.removeDefaultMessage &&\n isBuiltinFormatter(opts.format) &&\n files.every(\n file =>\n existsSync(file) &&\n NATIVE_SUPPORTED_EXTENSIONS.has(extname(file).toLowerCase())\n )\n )\n}\n\nasync function processFile(\n source: string,\n fn: string,\n {idInterpolationPattern, ...opts}: Opts & {idInterpolationPattern?: string}\n) {\n let messages: ExtractedMessageDescriptor[] = []\n let meta: Record<string, string> | undefined\n\n const onMsgExtracted = opts.onMsgExtracted\n const onMetaExtracted = opts.onMetaExtracted\n\n opts = {\n ...opts,\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n onMsgExtracted(filePath, msgs) {\n if (opts.extractSourceLocation) {\n msgs = msgs.map(msg => ({\n ...msg,\n ...calculateLineColFromOffset(source, msg.start),\n }))\n }\n messages = messages.concat(msgs)\n\n if (onMsgExtracted) {\n onMsgExtracted(filePath, msgs)\n }\n },\n onMetaExtracted(filePath, m) {\n meta = m\n\n if (onMetaExtracted) {\n onMetaExtracted(filePath, m)\n }\n },\n }\n\n if (!opts.overrideIdFn && idInterpolationPattern) {\n opts = {\n ...opts,\n overrideIdFn: (id, defaultMessage, description, fileName) =>\n id ||\n interpolateName(\n {\n resourcePath: fileName,\n } as any,\n idInterpolationPattern,\n {\n content: description\n ? `${defaultMessage}#${\n typeof description === 'string'\n ? description\n : stringify(description)\n }`\n : defaultMessage,\n }\n ),\n }\n }\n\n debug('Processing opts for %s: %s', fn, opts)\n\n const scriptParseFn = parseScript(opts, fn)\n if (fn.endsWith('.vue')) {\n debug('Processing %s using vue extractor', fn)\n const {parseFile} = await import('./vue_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.svelte')) {\n debug('Processing %s using svelte extractor', fn)\n const {parseFile} = await import('./svelte_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.hbs')) {\n debug('Processing %s using hbs extractor', fn)\n const {parseFile} = await import('./hbs_extractor.js')\n parseFile(source, fn, opts)\n } else if (fn.endsWith('.gts') || fn.endsWith('.gjs')) {\n debug('Processing %s as gts/gjs file', fn)\n const {parseFile} = await import('./gts_extractor.js')\n parseFile(source, fn, opts)\n } else {\n debug('Processing %s using typescript extractor', fn)\n scriptParseFn(source)\n }\n debug('Done extracting %s messages: %s', fn, messages)\n if (meta) {\n debug('Extracted meta:', meta)\n messages.forEach(m => (m.meta = meta))\n }\n return {messages, meta}\n}\n\n/**\n * Extract strings from source files\n * @param files list of files\n * @param extractOpts extract options\n * @returns messages serialized as JSON string since key order\n * matters for some `format`\n */\nexport async function extract(\n files: readonly string[],\n extractOpts: ExtractOpts\n): Promise<string> {\n const {throws, readFromStdin, signal, ...opts} = extractOpts\n // When throws is not explicitly true, we want to collect partial results\n const shouldThrow = throws === true\n // Pass throws option to transformer for per-message error handling\n const optsWithThrows = {\n ...opts,\n throws: shouldThrow,\n onMsgError: !shouldThrow\n ? (_: string, e: Error) => warn(e.message)\n : undefined,\n }\n\n if (!signal?.aborted && canExtractWithNative(files, opts, readFromStdin)) {\n return extractWithNative(files, {\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n additionalFunctionNames: opts.additionalFunctionNames,\n flatten: opts.flatten,\n format: typeof opts.format === 'string' ? opts.format : undefined,\n idInterpolationPattern: opts.idInterpolationPattern,\n preserveWhitespace: opts.preserveWhitespace,\n throws: shouldThrow,\n })\n }\n\n let rawResults: Array<ExtractionResult | undefined> = []\n try {\n if (readFromStdin) {\n debug(`Reading input from stdin`)\n // Read from stdin\n if (process.stdin.isTTY) {\n warn('Reading source file from TTY.')\n }\n const stdinSource = await getStdinAsString()\n rawResults = [await processFile(stdinSource, 'dummy', optsWithThrows)]\n } else {\n // Use Promise.allSettled when throws is not explicitly true to collect partial results\n if (!shouldThrow) {\n const settledResults = await Promise.allSettled(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n rawResults = settledResults.map(result => {\n if (result.status === 'fulfilled') {\n return result.value\n } else {\n warn(String(result.reason))\n return undefined\n }\n })\n } else {\n rawResults = await Promise.all(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n }\n }\n } catch (e) {\n if (shouldThrow) {\n throw e\n } else {\n warn(String(e))\n }\n }\n\n const formatter: Formatter<unknown> = await resolveBuiltinFormatter(\n opts.format\n )\n const extractionResults = rawResults.filter((r): r is ExtractionResult => !!r)\n\n const extractedMessages = new Map<string, MessageDescriptor>()\n\n for (const {messages} of extractionResults) {\n for (const message of messages) {\n const {id, description, defaultMessage} = message\n if (!id) {\n const error = new Error(\n `[FormatJS CLI] Missing message id for message:\n${JSON.stringify(message, undefined, 2)}`\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n continue\n }\n\n if (extractedMessages.has(id)) {\n const existing = extractedMessages.get(id)!\n if (\n stringify(description) !== stringify(existing.description) ||\n defaultMessage !== existing.defaultMessage\n ) {\n const error = new Error(\n `[FormatJS CLI] Duplicate message id: \"${id}\", ` +\n 'but the `description` and/or `defaultMessage` are different.'\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n }\n }\n extractedMessages.set(id, message)\n }\n }\n const results: Record<string, Omit<MessageDescriptor, 'id'>> = {}\n const messages = Array.from(extractedMessages.values())\n for (const {id, ...msg} of messages) {\n // GH #3537: flatten is now applied during extraction in the babel plugin,\n // so we don't need to apply it again here. The messages are already flattened.\n results[id] = msg\n }\n if (typeof formatter.serialize === 'function') {\n return formatter.serialize(formatter.format(results as any))\n }\n return (\n stringify(formatter.format(results as any), {\n space: 2,\n cmp: formatter.compareMessages || undefined,\n }) ?? ''\n )\n}\n\n/**\n * Extract strings from source files, also writes to a file.\n * @param files list of files\n * @param extractOpts extract options\n * @returns A Promise that resolves if output file was written successfully\n */\nexport default async function extractAndWrite(\n files: readonly string[],\n extractOpts: ExtractCLIOptions\n): Promise<void> {\n const {outFile, ...opts} = extractOpts\n const serializedResult = (await extract(files, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n","import {outputFile} from 'fs-extra/esm'\nimport {readFile} from 'fs/promises'\nimport glob from 'fast-glob'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport {debug, warn, writeStdout} from '#packages/cli-lib/console_utils.js'\nimport {type Formatter} from '#packages/cli-lib/formatters/index.js'\nimport {\n type NativeCompileMessage,\n compileMessagesWithNative,\n compileWithNative,\n} from '#packages/cli-lib/native.js'\n\nconst dynamicImport = new Function('specifier', 'return import(specifier)') as (\n specifier: string\n) => Promise<Formatter<unknown>>\nconst globSync = glob.sync\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING =\n 'Passing a custom formatter file to --format during compilation is deprecated and will be removed in a future release. Prefer a built-in formatter name or pre-process translation files before running formatjs compile.'\n\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\n\nexport type PseudoLocale = 'xx-LS' | 'xx-AC' | 'xx-HA' | 'en-XA' | 'en-XB'\n\nexport interface CompileCLIOpts extends Opts {\n /**\n * The target file that contains compiled messages.\n */\n outFile?: string\n}\n\nexport interface Opts {\n /**\n * Whether to compile message into AST instead of just string\n */\n ast?: boolean\n /**\n * Whether to continue compiling messages after encountering an error.\n * Any keys with errors will not be included in the output file.\n */\n skipErrors?: boolean\n /**\n * Built-in formatter name or path to a formatter file that converts\n * <translation_files> to `Record<string, string>` so we can compile.\n * Formatter file paths are deprecated for compilation.\n */\n format?: string | Formatter<unknown>\n /**\n * Whether to compile to pseudo locale\n */\n pseudoLocale?: PseudoLocale\n /**\n * Whether the parser to treat HTML/XML tags as string literal\n * instead of parsing them as tag token.\n * When this is false we only allow simple tags without\n * any attributes\n */\n ignoreTag?: boolean\n /**\n * An AbortSignal to cancel the compilation before invoking native code.\n */\n signal?: AbortSignal\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding.\n * @param inputFiles Input files or glob patterns\n * @param opts Options\n * @returns serialized result in string format\n */\nexport async function compile(\n inputFiles: string[],\n opts: Opts = {}\n): Promise<string> {\n debug('Compiling files:', inputFiles)\n const {\n ast,\n format,\n pseudoLocale,\n skipErrors,\n ignoreTag,\n signal,\n followLinks,\n } = opts\n signal?.throwIfAborted()\n\n if (format && !isBuiltinFormatter(format)) {\n return compileWithCustomFormatter(inputFiles, opts)\n }\n\n return compileWithNative(inputFiles, {\n ast,\n format: typeof format === 'string' ? format : undefined,\n followLinks,\n ignoreTag,\n pseudoLocale,\n skipErrors,\n })\n}\n\nfunction isBuiltinFormatter(\n format: string | Formatter<unknown>\n): format is string {\n return typeof format === 'string' && BUILTIN_FORMATTERS.has(format)\n}\n\nasync function compileWithCustomFormatter(\n inputFiles: string[],\n opts: Opts\n): Promise<string> {\n if (typeof opts.format === 'string') {\n await warn(CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING)\n }\n\n const formatter = await resolveCustomFormatter(opts.format)\n const files = globSync(inputFiles, {\n followSymbolicLinks: opts.followLinks ?? true,\n })\n\n if (!files.length) {\n throw new Error('No translation files found matching the patterns')\n }\n\n const messages: NativeCompileMessage[] = []\n await Promise.all(\n files.map(async file => {\n opts.signal?.throwIfAborted()\n const content = await readFile(file, {\n encoding: 'utf8',\n signal: opts.signal,\n })\n const compiled = formatter.compile(JSON.parse(content))\n for (const id of Object.keys(compiled)) {\n messages.push({\n id,\n message: compiled[id],\n sourceFile: file,\n })\n }\n })\n )\n\n const serialized = compileMessagesWithNative(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n\n if (formatter.compareMessages) {\n return (\n stringify(JSON.parse(serialized), {\n space: 2,\n cmp: formatter.compareMessages,\n }) ?? ''\n )\n }\n\n return serialized\n}\n\nasync function resolveCustomFormatter(\n format: string | Formatter<unknown> | undefined\n): Promise<Formatter<unknown>> {\n if (!format) {\n throw new Error('A custom formatter is required')\n }\n if (typeof format !== 'string') {\n return format\n }\n try {\n return dynamicImport(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding and\n * write output to `outFile` when provided.\n * @param inputFiles Input files or glob patterns\n * @param compileOpts options\n * @returns A `Promise` that resolves if file was written successfully\n */\nexport default async function compileAndWrite(\n inputFiles: string[],\n compileOpts: CompileCLIOpts = {}\n): Promise<void> {\n const {outFile, ...opts} = compileOpts\n const serializedResult = (await compile(inputFiles, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/cli-lib",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.4",
|
|
4
4
|
"description": "Lib for CLI for formatjs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@babel/types": "8",
|
|
38
|
-
"@formatjs/icu-messageformat-parser": "3.5.
|
|
39
|
-
"@formatjs/ts-transformer": "4.4.
|
|
38
|
+
"@formatjs/icu-messageformat-parser": "3.5.17",
|
|
39
|
+
"@formatjs/ts-transformer": "4.4.19",
|
|
40
40
|
"@types/fs-extra": "11",
|
|
41
41
|
"@types/node": "22 || 24",
|
|
42
42
|
"commander": "14",
|
|
@@ -80,12 +80,12 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"optionalDependencies": {
|
|
83
|
-
"@formatjs/cli-native-darwin-arm64": "1.1.
|
|
84
|
-
"@formatjs/cli-native-linux-arm64": "1.2.
|
|
85
|
-
"@formatjs/cli-native-linux-arm64-musl": "1.0.
|
|
86
|
-
"@formatjs/cli-native-linux-x64": "1.1.
|
|
87
|
-
"@formatjs/cli-native-linux-x64-musl": "1.0.
|
|
88
|
-
"@formatjs/cli-native-win32-x64": "1.1.
|
|
83
|
+
"@formatjs/cli-native-darwin-arm64": "1.1.12",
|
|
84
|
+
"@formatjs/cli-native-linux-arm64": "1.2.12",
|
|
85
|
+
"@formatjs/cli-native-linux-arm64-musl": "1.0.10",
|
|
86
|
+
"@formatjs/cli-native-linux-x64": "1.1.12",
|
|
87
|
+
"@formatjs/cli-native-linux-x64-musl": "1.0.10",
|
|
88
|
+
"@formatjs/cli-native-win32-x64": "1.1.13"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">= 20.12.0"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parse_script-B0J5TKud.js","names":["clearLine"],"sources":["../console_utils.ts","../parse_script.ts"],"sourcesContent":["import {\n clearLine as nativeClearLine,\n cursorTo as nativeCursorTo,\n} from 'readline'\nimport {format, promisify, styleText} from 'node:util'\n\nconst CLEAR_WHOLE_LINE = 0\n\nexport const writeStderr: (arg1: string | Uint8Array) => Promise<void> =\n promisify(process.stderr.write).bind(process.stderr)\nexport const writeStdout: (arg1: string | Uint8Array) => Promise<void> =\n promisify(process.stdout.write).bind(process.stdout)\n\n// From:\n// https://github.com/yarnpkg/yarn/blob/53d8004229f543f342833310d5af63a4b6e59c8a/src/reporters/console/util.js\nexport async function clearLine(\n terminal: (typeof process)['stderr']\n): Promise<void> {\n if (!terminal.hasColors?.()) {\n if (terminal.isTTY) {\n // terminal\n if (terminal.columns > 0) {\n await writeStderr(`\\r${' '.repeat(terminal.columns - 1)}`)\n }\n await writeStderr(`\\r`)\n }\n // ignore piping to file\n } else {\n nativeClearLine(terminal, CLEAR_WHOLE_LINE)\n nativeCursorTo(terminal, 0, undefined)\n }\n}\n\ntype LogLevel = 'debug' | 'warn' | 'error'\n\nconst LEVEL_COLORS: Record<LogLevel, 'green' | 'yellow' | 'red'> = {\n debug: 'green',\n warn: 'yellow',\n error: 'red',\n}\n\nfunction label(level: LogLevel, message: string) {\n return `[@formatjs/cli] [${styleText(\n LEVEL_COLORS[level],\n level.toUpperCase()\n )}] ${message}`\n}\n\nexport async function debug(message: string, ...args: any[]): Promise<void> {\n if (process.env.LOG_LEVEL !== 'debug') {\n return\n }\n await clearLine(process.stderr)\n await writeStderr(format(label('debug', message), ...args))\n await writeStderr('\\n')\n}\n\nexport async function warn(message: string, ...args: any[]): Promise<void> {\n await clearLine(process.stderr)\n await writeStderr(format(label('warn', message), ...args))\n await writeStderr('\\n')\n}\n\nexport function getStdinAsString(): Promise<string> {\n let result = ''\n return new Promise(resolve => {\n process.stdin.setEncoding('utf-8')\n process.stdin.on('readable', () => {\n let chunk\n while ((chunk = process.stdin.read())) {\n result += chunk\n }\n })\n process.stdin.on('end', () => {\n resolve(result)\n })\n })\n}\n","import {type Opts, transformWithTs} from '@formatjs/ts-transformer'\nimport * as ts from 'typescript'\nimport {debug} from '#packages/cli-lib/console_utils.js'\n/**\n * Invoid TypeScript module transpilation with our TS transformer\n * @param opts Formatjs TS Transformer opt\n * @param fn filename\n */\nexport function parseScript(opts: Opts, fn?: string) {\n return (source: string): void => {\n let output\n try {\n debug('Using TS compiler to process file', fn)\n output = ts.transpileModule(source, {\n compilerOptions: {\n allowJs: true,\n target: ts.ScriptTarget.ESNext,\n noEmit: true,\n experimentalDecorators: true,\n },\n reportDiagnostics: true,\n fileName: fn,\n transformers: {\n before: [transformWithTs(ts, opts)],\n },\n })\n } catch (e) {\n if (e instanceof Error) {\n e.message = `Error processing file ${fn} \n${e.message || ''}`\n }\n throw e\n }\n if (output.diagnostics) {\n const errs = output.diagnostics.filter(\n d => d.category === ts.DiagnosticCategory.Error\n )\n if (errs.length) {\n throw new Error(\n ts.formatDiagnosticsWithColorAndContext(errs, {\n getCanonicalFileName: fileName => fileName,\n getCurrentDirectory: () => process.cwd(),\n getNewLine: () => ts.sys.newLine,\n })\n )\n }\n }\n }\n}\n"],"mappings":";;;;;AAMA,MAAM,mBAAmB;AAEzB,MAAa,cACX,UAAU,QAAQ,OAAO,KAAK,CAAC,CAAC,KAAK,QAAQ,MAAM;AACrD,MAAa,cACX,UAAU,QAAQ,OAAO,KAAK,CAAC,CAAC,KAAK,QAAQ,MAAM;AAIrD,eAAsBA,YACpB,UACe;CACf,IAAI,CAAC,SAAS,YAAY;
|
|
1
|
+
{"version":3,"file":"parse_script-B0J5TKud.js","names":["clearLine"],"sources":["../console_utils.ts","../parse_script.ts"],"sourcesContent":["import {\n clearLine as nativeClearLine,\n cursorTo as nativeCursorTo,\n} from 'readline'\nimport {format, promisify, styleText} from 'node:util'\n\nconst CLEAR_WHOLE_LINE = 0\n\nexport const writeStderr: (arg1: string | Uint8Array) => Promise<void> =\n promisify(process.stderr.write).bind(process.stderr)\nexport const writeStdout: (arg1: string | Uint8Array) => Promise<void> =\n promisify(process.stdout.write).bind(process.stdout)\n\n// From:\n// https://github.com/yarnpkg/yarn/blob/53d8004229f543f342833310d5af63a4b6e59c8a/src/reporters/console/util.js\nexport async function clearLine(\n terminal: (typeof process)['stderr']\n): Promise<void> {\n if (!terminal.hasColors?.()) {\n if (terminal.isTTY) {\n // terminal\n if (terminal.columns > 0) {\n await writeStderr(`\\r${' '.repeat(terminal.columns - 1)}`)\n }\n await writeStderr(`\\r`)\n }\n // ignore piping to file\n } else {\n nativeClearLine(terminal, CLEAR_WHOLE_LINE)\n nativeCursorTo(terminal, 0, undefined)\n }\n}\n\ntype LogLevel = 'debug' | 'warn' | 'error'\n\nconst LEVEL_COLORS: Record<LogLevel, 'green' | 'yellow' | 'red'> = {\n debug: 'green',\n warn: 'yellow',\n error: 'red',\n}\n\nfunction label(level: LogLevel, message: string) {\n return `[@formatjs/cli] [${styleText(\n LEVEL_COLORS[level],\n level.toUpperCase()\n )}] ${message}`\n}\n\nexport async function debug(message: string, ...args: any[]): Promise<void> {\n if (process.env.LOG_LEVEL !== 'debug') {\n return\n }\n await clearLine(process.stderr)\n await writeStderr(format(label('debug', message), ...args))\n await writeStderr('\\n')\n}\n\nexport async function warn(message: string, ...args: any[]): Promise<void> {\n await clearLine(process.stderr)\n await writeStderr(format(label('warn', message), ...args))\n await writeStderr('\\n')\n}\n\nexport function getStdinAsString(): Promise<string> {\n let result = ''\n return new Promise(resolve => {\n process.stdin.setEncoding('utf-8')\n process.stdin.on('readable', () => {\n let chunk\n while ((chunk = process.stdin.read())) {\n result += chunk\n }\n })\n process.stdin.on('end', () => {\n resolve(result)\n })\n })\n}\n","import {type Opts, transformWithTs} from '@formatjs/ts-transformer'\nimport * as ts from 'typescript'\nimport {debug} from '#packages/cli-lib/console_utils.js'\n/**\n * Invoid TypeScript module transpilation with our TS transformer\n * @param opts Formatjs TS Transformer opt\n * @param fn filename\n */\nexport function parseScript(opts: Opts, fn?: string) {\n return (source: string): void => {\n let output\n try {\n debug('Using TS compiler to process file', fn)\n output = ts.transpileModule(source, {\n compilerOptions: {\n allowJs: true,\n target: ts.ScriptTarget.ESNext,\n noEmit: true,\n experimentalDecorators: true,\n },\n reportDiagnostics: true,\n fileName: fn,\n transformers: {\n before: [transformWithTs(ts, opts)],\n },\n })\n } catch (e) {\n if (e instanceof Error) {\n e.message = `Error processing file ${fn} \n${e.message || ''}`\n }\n throw e\n }\n if (output.diagnostics) {\n const errs = output.diagnostics.filter(\n d => d.category === ts.DiagnosticCategory.Error\n )\n if (errs.length) {\n throw new Error(\n ts.formatDiagnosticsWithColorAndContext(errs, {\n getCanonicalFileName: fileName => fileName,\n getCurrentDirectory: () => process.cwd(),\n getNewLine: () => ts.sys.newLine,\n })\n )\n }\n }\n }\n}\n"],"mappings":";;;;;AAMA,MAAM,mBAAmB;AAEzB,MAAa,cACX,UAAU,QAAQ,OAAO,KAAK,CAAC,CAAC,KAAK,QAAQ,MAAM;AACrD,MAAa,cACX,UAAU,QAAQ,OAAO,KAAK,CAAC,CAAC,KAAK,QAAQ,MAAM;AAIrD,eAAsBA,YACpB,UACe;CACf,IAAI,CAAC,SAAS,YAAY,GACpB;MAAA,SAAS,OAAO;GAElB,IAAI,SAAS,UAAU,GACrB,MAAM,YAAY,KAAK,IAAI,OAAO,SAAS,UAAU,CAAC,GAAG;GAE3D,MAAM,YAAY,IAAI;EACxB;QAEK;EACL,UAAgB,UAAU,gBAAgB;EAC1C,SAAe,UAAU,GAAG,KAAA,CAAS;CACvC;AACF;AAIA,MAAM,eAA6D;CACjE,OAAO;CACP,MAAM;CACN,OAAO;AACT;AAEA,SAAS,MAAM,OAAiB,SAAiB;CAC/C,OAAO,oBAAoB,UACzB,aAAa,QACb,MAAM,YAAY,CACpB,EAAE,IAAI;AACR;AAEA,eAAsB,MAAM,SAAiB,GAAG,MAA4B;CAC1E,IAAI,QAAQ,IAAI,cAAc,SAC5B;CAEF,MAAMA,YAAU,QAAQ,MAAM;CAC9B,MAAM,YAAY,OAAO,MAAM,SAAS,OAAO,GAAG,GAAG,IAAI,CAAC;CAC1D,MAAM,YAAY,IAAI;AACxB;AAEA,eAAsB,KAAK,SAAiB,GAAG,MAA4B;CACzE,MAAMA,YAAU,QAAQ,MAAM;CAC9B,MAAM,YAAY,OAAO,MAAM,QAAQ,OAAO,GAAG,GAAG,IAAI,CAAC;CACzD,MAAM,YAAY,IAAI;AACxB;AAEA,SAAgB,mBAAoC;CAClD,IAAI,SAAS;CACb,OAAO,IAAI,SAAQ,YAAW;EAC5B,QAAQ,MAAM,YAAY,OAAO;EACjC,QAAQ,MAAM,GAAG,kBAAkB;GACjC,IAAI;GACJ,OAAQ,QAAQ,QAAQ,MAAM,KAAK,GACjC,UAAU;EAEd,CAAC;EACD,QAAQ,MAAM,GAAG,aAAa;GAC5B,QAAQ,MAAM;EAChB,CAAC;CACH,CAAC;AACH;;;;;;;;ACrEA,SAAgB,YAAY,MAAY,IAAa;CACnD,QAAQ,WAAyB;EAC/B,IAAI;EACJ,IAAI;GACF,MAAM,qCAAqC,EAAE;GAC7C,SAAS,GAAG,gBAAgB,QAAQ;IAClC,iBAAiB;KACf,SAAS;KACT,QAAQ,GAAG,aAAa;KACxB,QAAQ;KACR,wBAAwB;IAC1B;IACA,mBAAmB;IACnB,UAAU;IACV,cAAc,EACZ,QAAQ,CAAC,gBAAgB,IAAI,IAAI,CAAC,EACpC;GACF,CAAC;EACH,SAAS,GAAG;GACV,IAAI,aAAa,OACf,EAAE,UAAU,yBAAyB,GAAG;EAC9C,EAAE,WAAW;GAET,MAAM;EACR;EACA,IAAI,OAAO,aAAa;GACtB,MAAM,OAAO,OAAO,YAAY,QAC9B,MAAK,EAAE,aAAa,GAAG,mBAAmB,KAC5C;GACA,IAAI,KAAK,QACP,MAAM,IAAI,MACR,GAAG,qCAAqC,MAAM;IAC5C,uBAAsB,aAAY;IAClC,2BAA2B,QAAQ,IAAI;IACvC,kBAAkB,GAAG,IAAI;GAC3B,CAAC,CACH;EAEJ;CACF;AACF"}
|
|
@@ -118,7 +118,6 @@ function walkNode(node, source, parseScriptFn) {
|
|
|
118
118
|
else if (attr.expression) extractExpression(attr.expression, source, parseScriptFn);
|
|
119
119
|
}
|
|
120
120
|
walkFragment(node.fragment, source, parseScriptFn);
|
|
121
|
-
break;
|
|
122
121
|
}
|
|
123
122
|
}
|
|
124
123
|
function parseFile(source, filename, parseScriptFn) {
|
|
@@ -139,4 +138,4 @@ function parseFile(source, filename, parseScriptFn) {
|
|
|
139
138
|
//#endregion
|
|
140
139
|
export { parseFile };
|
|
141
140
|
|
|
142
|
-
//# sourceMappingURL=svelte_extractor-
|
|
141
|
+
//# sourceMappingURL=svelte_extractor-DDQhqn4P.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"svelte_extractor-CDMsbv9D.js","names":[],"sources":["../svelte_extractor.ts"],"sourcesContent":["import {parse} from 'svelte/compiler'\n\nexport type ScriptParseFn = (source: string) => void\n\ninterface SvelteNode {\n type: string\n start: number\n end: number\n [key: string]: any\n}\n\nconst MESSAGE_DESCRIPTOR_PROPS = new Set([\n 'id',\n 'defaultMessage',\n 'description',\n])\n\nfunction isValidIdentifier(name: string): boolean {\n return /^[$A-Z_a-z][$\\w]*$/.test(name)\n}\n\nfunction walkFragment(\n fragment: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!fragment || !fragment.nodes) {\n return\n }\n for (const node of fragment.nodes) {\n walkNode(node, source, parseScriptFn)\n }\n}\n\nfunction extractExpression(\n expression: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!expression || expression.start == null || expression.end == null) {\n return\n }\n const content = source.slice(expression.start, expression.end)\n try {\n parseScriptFn(`(${content})`)\n } catch (e) {\n console.warn(\n `Failed to parse \"${content}\". Ignore this if content has no extractable message`,\n e\n )\n }\n}\n\nfunction getStringAttributeValue(value: SvelteNode): string {\n return value.data ?? value.raw ?? ''\n}\n\nfunction getAttributeExpression(\n attr: SvelteNode,\n source: string\n): string | undefined {\n if (attr.value === true || attr.value == null) {\n return undefined\n }\n\n if (!Array.isArray(attr.value)) {\n if (attr.value.type === 'ExpressionTag') {\n return source.slice(\n attr.value.expression.start,\n attr.value.expression.end\n )\n }\n return undefined\n }\n\n if (!attr.value.length) {\n return '\"\"'\n }\n\n if (attr.value.length === 1) {\n const [value] = attr.value\n if (value.type === 'ExpressionTag') {\n return source.slice(value.expression.start, value.expression.end)\n }\n return JSON.stringify(getStringAttributeValue(value))\n }\n\n let staticValue = ''\n for (const value of attr.value) {\n if (value.type === 'ExpressionTag') {\n return undefined\n }\n staticValue += getStringAttributeValue(value)\n }\n return JSON.stringify(staticValue)\n}\n\nfunction extractMessageComponent(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (typeof node.name !== 'string' || !isValidIdentifier(node.name)) {\n return\n }\n\n const props: string[] = []\n for (const attr of node.attributes || []) {\n if (\n attr.type !== 'Attribute' ||\n typeof attr.name !== 'string' ||\n !MESSAGE_DESCRIPTOR_PROPS.has(attr.name)\n ) {\n continue\n }\n\n const expression = getAttributeExpression(attr, source)\n if (expression != null) {\n props.push(`${attr.name}: ${expression}`)\n }\n }\n\n if (!props.length) {\n return\n }\n\n try {\n parseScriptFn(`${node.name}({${props.join(', ')}})`)\n } catch (e) {\n console.warn(\n `Failed to parse ${node.name} message component. Ignore this if component has no extractable message`,\n e\n )\n }\n}\n\nfunction walkNode(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n switch (node.type) {\n case 'ExpressionTag':\n extractExpression(node.expression, source, parseScriptFn)\n break\n\n case 'ConstTag':\n // {@const x = expr} — the declaration contains the expression\n if (node.declaration) {\n const content = source.slice(\n node.declaration.start,\n node.declaration.end\n )\n try {\n parseScriptFn(content)\n } catch (e) {\n console.warn(\n `Failed to parse const declaration. Ignore this if content has no extractable message`,\n e\n )\n }\n }\n break\n\n case 'IfBlock':\n extractExpression(node.test, source, parseScriptFn)\n walkFragment(node.consequent, source, parseScriptFn)\n walkFragment(node.alternate, source, parseScriptFn)\n break\n\n case 'EachBlock':\n extractExpression(node.expression, source, parseScriptFn)\n if (node.key) {\n extractExpression(node.key, source, parseScriptFn)\n }\n walkFragment(node.body, source, parseScriptFn)\n walkFragment(node.fallback, source, parseScriptFn)\n break\n\n case 'AwaitBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.pending, source, parseScriptFn)\n walkFragment(node.then, source, parseScriptFn)\n walkFragment(node.catch, source, parseScriptFn)\n break\n\n case 'KeyBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.fragment, source, parseScriptFn)\n break\n\n case 'SnippetBlock':\n walkFragment(node.body, source, parseScriptFn)\n break\n\n case 'RegularElement':\n case 'Component':\n case 'SvelteComponent':\n case 'SvelteElement':\n case 'SvelteHead':\n case 'SvelteBody':\n case 'SvelteWindow':\n case 'SvelteDocument':\n case 'SlotElement':\n case 'SvelteSelf':\n case 'SvelteFragment':\n if (node.type === 'Component') {\n extractMessageComponent(node, source, parseScriptFn)\n }\n // Process attributes\n if (node.attributes) {\n for (const attr of node.attributes) {\n if (attr.type === 'Attribute') {\n if (Array.isArray(attr.value)) {\n for (const v of attr.value) {\n if (v.type === 'ExpressionTag') {\n extractExpression(v.expression, source, parseScriptFn)\n }\n }\n } else if (\n typeof attr.value === 'object' &&\n attr.value !== null &&\n attr.value.type === 'ExpressionTag'\n ) {\n extractExpression(attr.value.expression, source, parseScriptFn)\n }\n } else if (attr.type === 'SpreadAttribute') {\n extractExpression(attr.expression, source, parseScriptFn)\n } else if (attr.expression) {\n // Directive nodes (OnDirective, BindDirective, etc.)\n extractExpression(attr.expression, source, parseScriptFn)\n }\n }\n }\n // Process children\n walkFragment(node.fragment, source, parseScriptFn)\n break\n }\n}\n\nexport function parseFile(\n source: string,\n filename: string,\n parseScriptFn: ScriptParseFn\n): void {\n const ast = parse(source, {modern: true, filename})\n\n // Walk the template fragment\n walkFragment(ast.fragment as unknown as SvelteNode, source, parseScriptFn)\n\n // Process <script> block\n if (ast.instance) {\n const program = ast.instance.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n\n // Process <script context=\"module\"> / <script module> block\n if (ast.module) {\n const program = ast.module.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"svelte_extractor-DDQhqn4P.js","names":[],"sources":["../svelte_extractor.ts"],"sourcesContent":["import {parse} from 'svelte/compiler'\n\nexport type ScriptParseFn = (source: string) => void\n\ninterface SvelteNode {\n type: string\n start: number\n end: number\n [key: string]: any\n}\n\nconst MESSAGE_DESCRIPTOR_PROPS = new Set([\n 'id',\n 'defaultMessage',\n 'description',\n])\n\nfunction isValidIdentifier(name: string): boolean {\n return /^[$A-Z_a-z][$\\w]*$/.test(name)\n}\n\nfunction walkFragment(\n fragment: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!fragment || !fragment.nodes) {\n return\n }\n for (const node of fragment.nodes) {\n walkNode(node, source, parseScriptFn)\n }\n}\n\nfunction extractExpression(\n expression: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!expression || expression.start == null || expression.end == null) {\n return\n }\n const content = source.slice(expression.start, expression.end)\n try {\n parseScriptFn(`(${content})`)\n } catch (e) {\n console.warn(\n `Failed to parse \"${content}\". Ignore this if content has no extractable message`,\n e\n )\n }\n}\n\nfunction getStringAttributeValue(value: SvelteNode): string {\n return value.data ?? value.raw ?? ''\n}\n\nfunction getAttributeExpression(\n attr: SvelteNode,\n source: string\n): string | undefined {\n if (attr.value === true || attr.value == null) {\n return undefined\n }\n\n if (!Array.isArray(attr.value)) {\n if (attr.value.type === 'ExpressionTag') {\n return source.slice(\n attr.value.expression.start,\n attr.value.expression.end\n )\n }\n return undefined\n }\n\n if (!attr.value.length) {\n return '\"\"'\n }\n\n if (attr.value.length === 1) {\n const [value] = attr.value\n if (value.type === 'ExpressionTag') {\n return source.slice(value.expression.start, value.expression.end)\n }\n return JSON.stringify(getStringAttributeValue(value))\n }\n\n let staticValue = ''\n for (const value of attr.value) {\n if (value.type === 'ExpressionTag') {\n return undefined\n }\n staticValue += getStringAttributeValue(value)\n }\n return JSON.stringify(staticValue)\n}\n\nfunction extractMessageComponent(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (typeof node.name !== 'string' || !isValidIdentifier(node.name)) {\n return\n }\n\n const props: string[] = []\n for (const attr of node.attributes || []) {\n if (\n attr.type !== 'Attribute' ||\n typeof attr.name !== 'string' ||\n !MESSAGE_DESCRIPTOR_PROPS.has(attr.name)\n ) {\n continue\n }\n\n const expression = getAttributeExpression(attr, source)\n if (expression != null) {\n props.push(`${attr.name}: ${expression}`)\n }\n }\n\n if (!props.length) {\n return\n }\n\n try {\n parseScriptFn(`${node.name}({${props.join(', ')}})`)\n } catch (e) {\n console.warn(\n `Failed to parse ${node.name} message component. Ignore this if component has no extractable message`,\n e\n )\n }\n}\n\nfunction walkNode(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n switch (node.type) {\n case 'ExpressionTag':\n extractExpression(node.expression, source, parseScriptFn)\n break\n\n case 'ConstTag':\n // {@const x = expr} — the declaration contains the expression\n if (node.declaration) {\n const content = source.slice(\n node.declaration.start,\n node.declaration.end\n )\n try {\n parseScriptFn(content)\n } catch (e) {\n console.warn(\n `Failed to parse const declaration. Ignore this if content has no extractable message`,\n e\n )\n }\n }\n break\n\n case 'IfBlock':\n extractExpression(node.test, source, parseScriptFn)\n walkFragment(node.consequent, source, parseScriptFn)\n walkFragment(node.alternate, source, parseScriptFn)\n break\n\n case 'EachBlock':\n extractExpression(node.expression, source, parseScriptFn)\n if (node.key) {\n extractExpression(node.key, source, parseScriptFn)\n }\n walkFragment(node.body, source, parseScriptFn)\n walkFragment(node.fallback, source, parseScriptFn)\n break\n\n case 'AwaitBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.pending, source, parseScriptFn)\n walkFragment(node.then, source, parseScriptFn)\n walkFragment(node.catch, source, parseScriptFn)\n break\n\n case 'KeyBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.fragment, source, parseScriptFn)\n break\n\n case 'SnippetBlock':\n walkFragment(node.body, source, parseScriptFn)\n break\n\n case 'RegularElement':\n case 'Component':\n case 'SvelteComponent':\n case 'SvelteElement':\n case 'SvelteHead':\n case 'SvelteBody':\n case 'SvelteWindow':\n case 'SvelteDocument':\n case 'SlotElement':\n case 'SvelteSelf':\n case 'SvelteFragment':\n if (node.type === 'Component') {\n extractMessageComponent(node, source, parseScriptFn)\n }\n // Process attributes\n if (node.attributes) {\n for (const attr of node.attributes) {\n if (attr.type === 'Attribute') {\n if (Array.isArray(attr.value)) {\n for (const v of attr.value) {\n if (v.type === 'ExpressionTag') {\n extractExpression(v.expression, source, parseScriptFn)\n }\n }\n } else if (\n typeof attr.value === 'object' &&\n attr.value !== null &&\n attr.value.type === 'ExpressionTag'\n ) {\n extractExpression(attr.value.expression, source, parseScriptFn)\n }\n } else if (attr.type === 'SpreadAttribute') {\n extractExpression(attr.expression, source, parseScriptFn)\n } else if (attr.expression) {\n // Directive nodes (OnDirective, BindDirective, etc.)\n extractExpression(attr.expression, source, parseScriptFn)\n }\n }\n }\n // Process children\n walkFragment(node.fragment, source, parseScriptFn)\n break\n }\n}\n\nexport function parseFile(\n source: string,\n filename: string,\n parseScriptFn: ScriptParseFn\n): void {\n const ast = parse(source, {modern: true, filename})\n\n // Walk the template fragment\n walkFragment(ast.fragment as unknown as SvelteNode, source, parseScriptFn)\n\n // Process <script> block\n if (ast.instance) {\n const program = ast.instance.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n\n // Process <script context=\"module\"> / <script module> block\n if (ast.module) {\n const program = ast.module.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n}\n"],"mappings":"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"}
|