@formatjs/cli-lib 6.1.1 → 6.1.3

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/index.d.ts CHANGED
@@ -5,4 +5,3 @@ export type { FormatFn, CompileFn } from './src/formatters/default';
5
5
  export type { Element, Comparator } from 'json-stable-stringify';
6
6
  export { default as compileAndWrite, compile } from './src/compile';
7
7
  export type { CompileCLIOpts, Opts as CompileOpts } from './src/compile';
8
- //# sourceMappingURL=index.d.ts.map
package/main.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  #!/usr/bin/env node
2
- //# sourceMappingURL=main.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/cli-lib",
3
- "version": "6.1.1",
3
+ "version": "6.1.3",
4
4
  "description": "Lib for CLI for formatjs.",
5
5
  "keywords": [
6
6
  "intl",
@@ -31,8 +31,6 @@
31
31
  "url": "https://github.com/formatjs/formatjs/issues"
32
32
  },
33
33
  "dependencies": {
34
- "@formatjs/icu-messageformat-parser": "2.4.0",
35
- "@formatjs/ts-transformer": "3.13.1",
36
34
  "@types/estree": "^0.0.50",
37
35
  "@types/fs-extra": "^9.0.1",
38
36
  "@types/json-stable-stringify": "^1.0.32",
@@ -44,7 +42,9 @@
44
42
  "json-stable-stringify": "^1.0.1",
45
43
  "loud-rejection": "^2.2.0",
46
44
  "tslib": "^2.4.0",
47
- "typescript": "^4.7 || 5"
45
+ "typescript": "^4.7 || 5",
46
+ "@formatjs/icu-messageformat-parser": "2.6.0",
47
+ "@formatjs/ts-transformer": "3.13.3"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@vue/compiler-core": "^3.2.23",
package/src/cli.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  declare function main(argv: string[]): Promise<void>;
2
2
  export default main;
3
- //# sourceMappingURL=cli.d.ts.map
package/src/compile.d.ts CHANGED
@@ -45,4 +45,3 @@ export declare function compile(inputFiles: string[], opts?: Opts): Promise<stri
45
45
  * @returns A `Promise` that resolves if file was written successfully
46
46
  */
47
47
  export default function compileAndWrite(inputFiles: string[], compileOpts?: CompileCLIOpts): Promise<void>;
48
- //# sourceMappingURL=compile.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import { Opts } from './compile';
2
2
  export default function compileFolder(files: string[], outFolder: string, opts?: Opts): Promise<void[]>;
3
- //# sourceMappingURL=compile_folder.d.ts.map
@@ -7,4 +7,3 @@ export declare function debug(message: string, ...args: any[]): Promise<void>;
7
7
  export declare function warn(message: string, ...args: any[]): Promise<void>;
8
8
  export declare function error(message: string, ...args: any[]): Promise<void>;
9
9
  export declare function getStdinAsString(): Promise<string>;
10
- //# sourceMappingURL=console_utils.d.ts.map
package/src/extract.d.ts CHANGED
@@ -72,4 +72,3 @@ export declare function extract(files: readonly string[], extractOpts: ExtractOp
72
72
  * @returns A Promise that resolves if output file was written successfully
73
73
  */
74
74
  export default function extractAndWrite(files: readonly string[], extractOpts: ExtractCLIOptions): Promise<void>;
75
- //# sourceMappingURL=extract.d.ts.map
@@ -5,4 +5,3 @@ export type SmartlingJson = Record<string, {
5
5
  }>;
6
6
  export declare const format: FormatFn<SmartlingJson>;
7
7
  export declare const compile: CompileFn<SmartlingJson>;
8
- //# sourceMappingURL=crowdin.d.ts.map
@@ -3,4 +3,3 @@ export type FormatFn<T = Record<string, MessageDescriptor>> = (msgs: Record<stri
3
3
  export type CompileFn<T = Record<string, MessageDescriptor>> = (msgs: T) => Record<string, string>;
4
4
  export declare const format: FormatFn;
5
5
  export declare const compile: CompileFn;
6
- //# sourceMappingURL=default.d.ts.map
@@ -6,4 +6,3 @@ export interface Formatter {
6
6
  compareMessages?: Comparator;
7
7
  }
8
8
  export declare function resolveBuiltinFormatter(format?: string | Formatter): Promise<any>;
9
- //# sourceMappingURL=index.d.ts.map
@@ -7,4 +7,3 @@ export type StructuredJson = Record<string, {
7
7
  }>;
8
8
  export declare const format: FormatFn<StructuredJson>;
9
9
  export declare const compile: CompileFn<StructuredJson>;
10
- //# sourceMappingURL=lokalise.d.ts.map
@@ -2,4 +2,3 @@ import { CompileFn, FormatFn } from './default';
2
2
  export type PhraseJson = Record<string, string>;
3
3
  export declare const format: FormatFn<PhraseJson>;
4
4
  export declare const compile: CompileFn<PhraseJson>;
5
- //# sourceMappingURL=simple.d.ts.map
@@ -21,4 +21,3 @@ export type SmartlingJson = {
21
21
  export declare const format: FormatFn<SmartlingJson>;
22
22
  export declare const compareMessages: Comparator;
23
23
  export declare const compile: CompileFn<SmartlingJson>;
24
- //# sourceMappingURL=smartling.d.ts.map
@@ -7,4 +7,3 @@ export type StructuredJson = Record<string, {
7
7
  }>;
8
8
  export declare const format: FormatFn<StructuredJson>;
9
9
  export declare const compile: CompileFn<StructuredJson>;
10
- //# sourceMappingURL=transifex.d.ts.map
@@ -5,4 +5,3 @@ import { Opts } from '@formatjs/ts-transformer';
5
5
  * @param fn filename
6
6
  */
7
7
  export declare function parseScript(opts: Opts, fn?: string): (source: string) => void;
8
- //# sourceMappingURL=parse_script.d.ts.map
@@ -20,4 +20,3 @@ export declare function generateENXA(msg: string | MessageFormatElement[]): Mess
20
20
  * directionality will also be set to right-to-left.
21
21
  */
22
22
  export declare function generateENXB(msg: string | MessageFormatElement[]): MessageFormatElement[];
23
- //# sourceMappingURL=pseudo_locale.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export type ScriptParseFn = (source: string) => void;
2
2
  export declare function parseFile(source: string, filename: string, parseScriptFn: ScriptParseFn): any;
3
- //# sourceMappingURL=vue_extractor.d.ts.map
@@ -2,23 +2,30 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.parseFile = void 0;
4
4
  const compiler_sfc_1 = require("@vue/compiler-sfc");
5
+ // Duplicate `NodeTypes` here because they are defined as
6
+ // const enum, which does not work with swc transpilation: https://github.com/vuejs/core/issues/1228
7
+ const ELEMENT = 1;
8
+ const SIMPLE_EXPRESSION = 4;
9
+ const INTERPOLATION = 5;
10
+ const DIRECTIVE = 7;
11
+ const COMPOUND_EXPRESSION = 8;
5
12
  function walk(node, visitor) {
6
13
  if (typeof node !== 'object') {
7
14
  return;
8
15
  }
9
- if (node.type !== 1 /* NodeTypes.ELEMENT */ &&
10
- node.type !== 8 /* NodeTypes.COMPOUND_EXPRESSION */ &&
11
- node.type !== 5 /* NodeTypes.INTERPOLATION */) {
16
+ if (node.type !== ELEMENT &&
17
+ node.type !== COMPOUND_EXPRESSION &&
18
+ node.type !== INTERPOLATION) {
12
19
  return;
13
20
  }
14
21
  visitor(node);
15
- if (node.type === 5 /* NodeTypes.INTERPOLATION */) {
22
+ if (node.type === INTERPOLATION) {
16
23
  visitor(node.content);
17
24
  }
18
- else if (node.type === 1 /* NodeTypes.ELEMENT */) {
25
+ else if (node.type === ELEMENT) {
19
26
  node.children.forEach(n => walk(n, visitor));
20
27
  node.props
21
- .filter((prop) => prop.type === 7 /* NodeTypes.DIRECTIVE */)
28
+ .filter((prop) => prop.type === DIRECTIVE)
22
29
  .filter(prop => !!prop.exp)
23
30
  .forEach(prop => visitor(prop.exp));
24
31
  }
@@ -31,7 +38,7 @@ function templateSimpleExpressionNodeVisitor(parseScriptFn) {
31
38
  if (typeof n !== 'object') {
32
39
  return;
33
40
  }
34
- if (n.type !== 4 /* NodeTypes.SIMPLE_EXPRESSION */) {
41
+ if (n.type !== SIMPLE_EXPRESSION) {
35
42
  return;
36
43
  }
37
44
  const { content } = n;
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,eAAe,EAAE,OAAO,EAAC,MAAM,eAAe,CAAA;AACjE,YAAY,EAAC,iBAAiB,EAAE,WAAW,EAAC,MAAM,eAAe,CAAA;AACjE,YAAY,EAAC,iBAAiB,EAAC,MAAM,0BAA0B,CAAA;AAC/D,YAAY,EAAC,QAAQ,EAAE,SAAS,EAAC,MAAM,0BAA0B,CAAA;AACjE,YAAY,EAAC,OAAO,EAAE,UAAU,EAAC,MAAM,uBAAuB,CAAA;AAC9D,OAAO,EAAC,OAAO,IAAI,eAAe,EAAE,OAAO,EAAC,MAAM,eAAe,CAAA;AACjE,YAAY,EAAC,cAAc,EAAE,IAAI,IAAI,WAAW,EAAC,MAAM,eAAe,CAAA"}
package/main.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["main.ts"],"names":[],"mappings":""}
package/src/cli.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAUA,iBAAe,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,iBAoOjC;AACD,eAAe,IAAI,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"compile.d.ts","sourceRoot":"","sources":["../src/compile.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0B,SAAS,EAAC,MAAM,cAAc,CAAA;AAS/D,MAAM,MAAM,SAAS,GAAG,CAAC,IAAI,EAAE,GAAG,KAAK,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAE7D,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,CAAA;AAE1E,MAAM,WAAW,cAAe,SAAQ,IAAI;IAC1C;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AACD,MAAM,WAAW,IAAI;IACnB;;OAEG;IACH,GAAG,CAAC,EAAE,OAAO,CAAA;IACb;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,YAAY,CAAA;CAC5B;AAED;;;;;;;;GAQG;AACH,wBAAsB,OAAO,CAAC,UAAU,EAAE,MAAM,EAAE,EAAE,IAAI,GAAE,IAAS,mBAkElE;AAED;;;;;;GAMG;AACH,wBAA8B,eAAe,CAC3C,UAAU,EAAE,MAAM,EAAE,EACpB,WAAW,GAAE,cAAmB,iBAUjC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"compile_folder.d.ts","sourceRoot":"","sources":["../src/compile_folder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAU,MAAM,WAAW,CAAA;AAGvC,wBAA8B,aAAa,CACzC,KAAK,EAAE,MAAM,EAAE,EACf,SAAS,EAAE,MAAM,EACjB,IAAI,GAAE,IAAS,mBAQhB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"console_utils.d.ts","sourceRoot":"","sources":["../src/console_utils.ts"],"names":[],"mappings":";;AAMA,eAAO,MAAM,WAAW,8CAAuD,CAAA;AAC/E,eAAO,MAAM,WAAW,8CAAuD,CAAA;AAO/E,wBAAsB,SAAS,CAAC,QAAQ,EAAE,OAAO,OAAO,CAAC,QAAQ,CAAC,iBAcjE;AAcD,wBAAsB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,iBAO1D;AAED,wBAAsB,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,iBAIzD;AAED,wBAAsB,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,iBAI1D;AAED,wBAAgB,gBAAgB,IAAI,OAAO,CAAC,MAAM,CAAC,CAclD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"extract.d.ts","sourceRoot":"","sources":["../src/extract.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,IAAI,EACJ,iBAAiB,EAClB,MAAM,0BAA0B,CAAA;AAEjC,OAAO,EAA0B,SAAS,EAAC,MAAM,cAAc,CAAA;AAM/D,MAAM,WAAW,gBAAgB,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAC1D;;OAEG;IACH,QAAQ,EAAE,iBAAiB,EAAE,CAAA;IAC7B;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,CAAA;CACT;AAED,MAAM,WAAW,0BAA2B,SAAQ,iBAAiB;IACnE;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAC9B;AAED,MAAM,MAAM,iBAAiB,GAAG,IAAI,CAClC,WAAW,EACX,cAAc,GAAG,gBAAgB,GAAG,iBAAiB,CACtD,GAAG;IACF;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB,GAAG,IAAI,CAAC,IAAI,EAAE,gBAAgB,GAAG,iBAAiB,CAAC,CAAA;AAqFpD;;;;;;GAMG;AACH,wBAAsB,OAAO,CAC3B,KAAK,EAAE,SAAS,MAAM,EAAE,EACxB,WAAW,EAAE,WAAW,mBAmFzB;AAED;;;;;GAKG;AACH,wBAA8B,eAAe,CAC3C,KAAK,EAAE,SAAS,MAAM,EAAE,EACxB,WAAW,EAAE,iBAAiB,iBAS/B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"crowdin.d.ts","sourceRoot":"","sources":["../../src/formatters/crowdin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE7C,MAAM,MAAM,aAAa,GAAG,MAAM,CAChC,MAAM,EACN;IACE,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CACF,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,aAAa,CAY1C,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,aAAa,CAS5C,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/formatters/default.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,0BAA0B,CAAA;AAE1D,MAAM,MAAM,QAAQ,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,IAAI,CAC5D,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,KACpC,CAAC,CAAA;AAEN,MAAM,MAAM,SAAS,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,IAAI,CAC7D,IAAI,EAAE,CAAC,KACJ,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAE3B,eAAO,MAAM,MAAM,EAAE,QAAuB,CAAA;AAE5C,eAAO,MAAM,OAAO,EAAE,SAMrB,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/formatters/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,QAAQ,EAAE,SAAS,EAAC,MAAM,WAAW,CAAA;AAM7C,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAA;AAIhD,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE,QAAQ,CAAA;IAChB,OAAO,EAAE,SAAS,CAAA;IAClB,eAAe,CAAC,EAAE,UAAU,CAAA;CAC7B;AAED,wBAAsB,uBAAuB,CAC3C,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,GAC1B,OAAO,CAAC,GAAG,CAAC,CA0Bd"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"lokalise.d.ts","sourceRoot":"","sources":["../../src/formatters/lokalise.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE7C,MAAM,MAAM,cAAc,GAAG,MAAM,CACjC,MAAM,EACN;IACE,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CACF,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,cAAc,CAY3C,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,cAAc,CAM7C,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"simple.d.ts","sourceRoot":"","sources":["../../src/formatters/simple.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE7C,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAE/C,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,UAAU,CAKvC,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,UAAU,CAAgB,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"smartling.d.ts","sourceRoot":"","sources":["../../src/formatters/smartling.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE7C,MAAM,WAAW,mBAAmB;IAClC,eAAe,EAAE;QACf;YACE,IAAI,EAAE,MAAM,CAAA;YACZ,GAAG,EAAE,MAAM,CAAA;YACX,WAAW,EAAE,MAAM,CAAA;SACpB;KACF,CAAA;IACD,gBAAgB,EAAE,OAAO,CAAA;IACzB,aAAa,EAAE,MAAM,CAAA;IACrB,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;CACjB;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,EAAE,mBAAmB,CAAA;CAC/B,GAAG,MAAM,CACR,MAAM,EACN;IACE,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CACF,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,aAAa,CAwB1C,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,UAS7B,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,aAAa,CAS5C,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"transifex.d.ts","sourceRoot":"","sources":["../../src/formatters/transifex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE7C,MAAM,MAAM,cAAc,GAAG,MAAM,CACjC,MAAM,EACN;IACE,MAAM,EAAE,MAAM,CAAA;IACd,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,MAAM,CAAA;CACzB,CACF,CAAA;AAED,eAAO,MAAM,MAAM,EAAE,QAAQ,CAAC,cAAc,CAY3C,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,cAAc,CAM7C,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"parse_script.d.ts","sourceRoot":"","sources":["../src/parse_script.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAkB,MAAM,0BAA0B,CAAA;AAG9D;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,MAAM,YACjC,MAAM,UAuCvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"pseudo_locale.d.ts","sourceRoot":"","sources":["../src/pseudo_locale.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,oBAAoB,EAOrB,MAAM,oCAAoC,CAAA;AAmB3C,wBAAgB,YAAY,CAC1B,GAAG,EAAE,MAAM,GAAG,oBAAoB,EAAE,GACnC,oBAAoB,EAAE,CAQxB;AAED,wBAAgB,YAAY,CAC1B,GAAG,EAAE,MAAM,GAAG,oBAAoB,EAAE,GACnC,oBAAoB,EAAE,CAMxB;AAED,wBAAgB,YAAY,CAC1B,GAAG,EAAE,MAAM,GAAG,oBAAoB,EAAE,GACnC,oBAAoB,EAAE,CAQxB;AA4DD;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,MAAM,GAAG,oBAAoB,EAAE,GACnC,oBAAoB,EAAE,CAUxB;AAED;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,MAAM,GAAG,oBAAoB,EAAE,GACnC,oBAAoB,EAAE,CAUxB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"vue_extractor.d.ts","sourceRoot":"","sources":["../src/vue_extractor.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,aAAa,GAAG,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;AA4DpD,wBAAgB,SAAS,CACvB,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,aAAa,GAC3B,GAAG,CAoBL"}