@formatjs/cli-lib 6.1.5 → 6.3.0

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/main.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  #!/usr/bin/env node
2
+ export {};
package/main.js CHANGED
@@ -1,3 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
+ Object.defineProperty(exports, "__esModule", { value: true });
3
4
  require('./src/cli').default(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/cli-lib",
3
- "version": "6.1.5",
3
+ "version": "6.3.0",
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.6.2",
35
- "@formatjs/ts-transformer": "3.13.5",
36
34
  "@types/estree": "^1.0.0",
37
35
  "@types/fs-extra": "^9.0.1",
38
36
  "@types/json-stable-stringify": "^1.0.32",
@@ -44,14 +42,16 @@
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": "5",
46
+ "@formatjs/icu-messageformat-parser": "2.7.0",
47
+ "@formatjs/ts-transformer": "3.13.6"
48
48
  },
49
49
  "peerDependencies": {
50
- "@vue/compiler-core": "^3.2.23",
51
- "@vue/compiler-sfc": "^3.2.34"
50
+ "@vue/compiler-core": "^3.3.4",
51
+ "vue": "^3.3.4"
52
52
  },
53
53
  "peerDependenciesMeta": {
54
- "@vue/compiler-sfc": {
54
+ "vue": {
55
55
  "optional": true
56
56
  },
57
57
  "@vue/compiler-core": {
package/src/extract.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Opts, MessageDescriptor } from '@formatjs/ts-transformer';
1
+ import { MessageDescriptor, Opts } from '@formatjs/ts-transformer';
2
2
  import { Formatter } from './formatters';
3
3
  export interface ExtractionResult<M = Record<string, string>> {
4
4
  /**
package/src/extract.js CHANGED
@@ -2,15 +2,15 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.extract = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const console_utils_1 = require("./console_utils");
6
- const fs_extra_1 = require("fs-extra");
7
5
  const ts_transformer_1 = require("@formatjs/ts-transformer");
8
- const formatters_1 = require("./formatters");
6
+ const fs_extra_1 = require("fs-extra");
7
+ const console_utils_1 = require("./console_utils");
8
+ const icu_messageformat_parser_1 = require("@formatjs/icu-messageformat-parser");
9
+ const manipulator_1 = require("@formatjs/icu-messageformat-parser/manipulator");
10
+ const printer_1 = require("@formatjs/icu-messageformat-parser/printer");
9
11
  const json_stable_stringify_1 = tslib_1.__importDefault(require("json-stable-stringify"));
12
+ const formatters_1 = require("./formatters");
10
13
  const parse_script_1 = require("./parse_script");
11
- const printer_1 = require("@formatjs/icu-messageformat-parser/printer");
12
- const manipulator_1 = require("@formatjs/icu-messageformat-parser/manipulator");
13
- const icu_messageformat_parser_1 = require("@formatjs/icu-messageformat-parser");
14
14
  function calculateLineColFromOffset(text, start) {
15
15
  if (!start) {
16
16
  return { line: 1, col: 1 };
@@ -61,7 +61,7 @@ async function processFile(source, fn, { idInterpolationPattern, ...opts }) {
61
61
  const scriptParseFn = (0, parse_script_1.parseScript)(opts, fn);
62
62
  if (fn.endsWith('.vue')) {
63
63
  (0, console_utils_1.debug)('Processing %s using vue extractor', fn);
64
- const { parseFile } = await Promise.resolve().then(() => tslib_1.__importStar(require('./vue_extractor')));
64
+ const { parseFile } = await import('./vue_extractor.js');
65
65
  parseFile(source, fn, scriptParseFn);
66
66
  }
67
67
  else {
@@ -153,6 +153,9 @@ ${JSON.stringify(message, undefined, 2)}`);
153
153
  }
154
154
  results[id] = msg;
155
155
  }
156
+ if (typeof formatter.serialize === 'function') {
157
+ return formatter.serialize(formatter.format(results));
158
+ }
156
159
  return (0, json_stable_stringify_1.default)(formatter.format(results), {
157
160
  space: 2,
158
161
  cmp: formatter.compareMessages || undefined,
@@ -1,5 +1,6 @@
1
1
  import { MessageDescriptor } from '@formatjs/ts-transformer';
2
2
  export type FormatFn<T = Record<string, MessageDescriptor>> = (msgs: Record<string, MessageDescriptor>) => T;
3
3
  export type CompileFn<T = Record<string, MessageDescriptor>> = (msgs: T) => Record<string, string>;
4
+ export type SerializeFn<T = Record<string, MessageDescriptor>> = (msgs: T) => string;
4
5
  export declare const format: FormatFn;
5
6
  export declare const compile: CompileFn;
@@ -1,6 +1,7 @@
1
- import { FormatFn, CompileFn } from './default';
2
- import { Comparator } from 'json-stable-stringify';
1
+ import { FormatFn, SerializeFn, CompileFn } from './default';
2
+ import type { Comparator } from 'json-stable-stringify';
3
3
  export interface Formatter {
4
+ serialize: SerializeFn;
4
5
  format: FormatFn;
5
6
  compile: CompileFn;
6
7
  compareMessages?: Comparator;
@@ -31,7 +31,7 @@ async function resolveBuiltinFormatter(format) {
31
31
  }
32
32
  try {
33
33
  // eslint-disable-next-line import/dynamic-import-chunkname
34
- return Promise.resolve(`${(0, url_1.pathToFileURL)((0, path_1.resolve)(process.cwd(), format)).href}`).then(s => tslib_1.__importStar(require(s)));
34
+ return import((0, url_1.pathToFileURL)((0, path_1.resolve)(process.cwd(), format)).href);
35
35
  }
36
36
  catch (e) {
37
37
  console.error(`Cannot resolve formatter ${format}`);
@@ -1,4 +1,4 @@
1
- import { Comparator } from 'json-stable-stringify';
1
+ import type { Comparator } from 'json-stable-stringify';
2
2
  import { CompileFn, FormatFn } from './default';
3
3
  export interface SmartlingDirectives {
4
4
  translate_paths: [
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.parseFile = void 0;
4
- const compiler_sfc_1 = require("@vue/compiler-sfc");
4
+ const compiler_sfc_1 = require("vue/compiler-sfc");
5
5
  // Duplicate `NodeTypes` here because they are defined as
6
6
  // const enum, which does not work with swc transpilation: https://github.com/vuejs/core/issues/1228
7
7
  const ELEMENT = 1;
@@ -45,7 +45,12 @@ function templateSimpleExpressionNodeVisitor(parseScriptFn) {
45
45
  // Wrap this in () since a vue comp node attribute can just be
46
46
  // an object literal which, by itself is invalid TS
47
47
  // but with () it becomes an ExpressionStatement
48
- parseScriptFn(`(${content})`);
48
+ try {
49
+ parseScriptFn(`(${content})`);
50
+ }
51
+ catch (e) {
52
+ console.warn(`Failed to parse "${content}". Ignore this if content has no extractable message`, e);
53
+ }
49
54
  };
50
55
  }
51
56
  function parseFile(source, filename, parseScriptFn) {
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"}