i18next-cli 1.67.4 → 1.67.5
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/dist/cjs/cli.js +1 -1
- package/dist/cjs/extractor/core/extractor.js +6 -10
- package/dist/cjs/extractor/parsers/ast-utils.js +18 -0
- package/dist/cjs/instrumenter/core/instrumenter.js +5 -12
- package/dist/cjs/linter.js +1 -5
- package/dist/esm/cli.js +1 -1
- package/dist/esm/extractor/core/extractor.js +7 -11
- package/dist/esm/extractor/parsers/ast-utils.js +18 -1
- package/dist/esm/instrumenter/core/instrumenter.js +6 -13
- package/dist/esm/linter.js +2 -6
- package/package.json +1 -1
- package/types/extractor/core/extractor.d.ts.map +1 -1
- package/types/extractor/parsers/ast-utils.d.ts +11 -0
- package/types/extractor/parsers/ast-utils.d.ts.map +1 -1
- package/types/instrumenter/core/instrumenter.d.ts.map +1 -1
- package/types/linter.d.ts.map +1 -1
package/dist/cjs/cli.js
CHANGED
|
@@ -37,7 +37,7 @@ const program = new commander.Command();
|
|
|
37
37
|
program
|
|
38
38
|
.name('i18next-cli')
|
|
39
39
|
.description('A unified, high-performance i18next CLI.')
|
|
40
|
-
.version('1.67.
|
|
40
|
+
.version('1.67.5'); // This string is replaced with the actual version at build time by rollup
|
|
41
41
|
// new: global config override option
|
|
42
42
|
program.option('-c, --config <path>', 'Path to i18next-cli config file (overrides detection)');
|
|
43
43
|
program
|
|
@@ -241,14 +241,11 @@ async function processFile(file, plugins, astVisitors, pluginContext, config, lo
|
|
|
241
241
|
throw new validation.ExtractorError('Failed to process file', file, err);
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
// Normalize SWC span offsets so every span is file-relative (0-based)
|
|
245
|
-
// SWC accumulates byte offsets across successive parse()
|
|
246
|
-
//
|
|
247
|
-
//
|
|
248
|
-
|
|
249
|
-
const firstTokenIdx = astUtils.findFirstTokenIndex(code);
|
|
250
|
-
const spanBase = ast.span.start - firstTokenIdx;
|
|
251
|
-
astUtils.normalizeASTSpans(ast, spanBase);
|
|
244
|
+
// Normalize SWC span offsets so every span is a file-relative (0-based)
|
|
245
|
+
// character index. SWC accumulates byte offsets across successive parse()
|
|
246
|
+
// calls and Module.span.start points to the first token, NOT to byte 0 of
|
|
247
|
+
// the source.
|
|
248
|
+
astUtils.normalizeSpansToCharIndices(ast, code);
|
|
252
249
|
// "Wire up" the visitor's scope method to the context.
|
|
253
250
|
// This avoids a circular dependency while giving plugins access to the scope.
|
|
254
251
|
pluginContext.getVarFromScope = astVisitors.getVarFromScope.bind(astVisitors);
|
|
@@ -348,8 +345,7 @@ async function preScanFile(file, astVisitors, config, logger$1 = new logger.Cons
|
|
|
348
345
|
throw new validation.ExtractorError('Failed to pre-scan file', file, err);
|
|
349
346
|
}
|
|
350
347
|
}
|
|
351
|
-
|
|
352
|
-
astUtils.normalizeASTSpans(ast, ast.span.start - firstTokenIdx);
|
|
348
|
+
astUtils.normalizeSpansToCharIndices(ast, code);
|
|
353
349
|
astVisitors.setCurrentFile(file, code);
|
|
354
350
|
astVisitors.preScanForConstants(ast);
|
|
355
351
|
}
|
|
@@ -168,6 +168,23 @@ function convertSpansToCharIndices(node, byteToChar) {
|
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
|
+
/**
|
|
172
|
+
* Normalises every span in a freshly parsed SWC AST to a file-relative UTF-16
|
|
173
|
+
* character index — the unit JavaScript strings, MagicString and
|
|
174
|
+
* `lineColumnFromOffset` all use.
|
|
175
|
+
*
|
|
176
|
+
* Combines the two steps that must always happen together: subtracting SWC's
|
|
177
|
+
* accumulated base (which is expressed in UTF-8 *bytes*, hence the
|
|
178
|
+
* `Buffer.byteLength` of the leading trivia) and converting the remaining byte
|
|
179
|
+
* offsets to char indices.
|
|
180
|
+
*/
|
|
181
|
+
function normalizeSpansToCharIndices(ast, code) {
|
|
182
|
+
const firstTokenByteIdx = Buffer.byteLength(code.slice(0, findFirstTokenIndex(code)), 'utf8');
|
|
183
|
+
normalizeASTSpans(ast, ast.span.start - firstTokenByteIdx);
|
|
184
|
+
const byteToChar = buildByteToCharMap(code);
|
|
185
|
+
if (byteToChar)
|
|
186
|
+
convertSpansToCharIndices(ast, byteToChar);
|
|
187
|
+
}
|
|
171
188
|
// ─── Ignore-comment helpers ──────────────────────────────────────────────────
|
|
172
189
|
/**
|
|
173
190
|
* Matches the shared ignore directive used by both the instrumenter and the
|
|
@@ -365,3 +382,4 @@ exports.getObjectProperty = getObjectProperty;
|
|
|
365
382
|
exports.isSimpleTemplateLiteral = isSimpleTemplateLiteral;
|
|
366
383
|
exports.lineColumnFromOffset = lineColumnFromOffset;
|
|
367
384
|
exports.normalizeASTSpans = normalizeASTSpans;
|
|
385
|
+
exports.normalizeSpansToCharIndices = normalizeSpansToCharIndices;
|
|
@@ -258,18 +258,11 @@ async function scanFileForCandidates(content, file, config) {
|
|
|
258
258
|
throw err;
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
|
-
// Normalize spans
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
// SWC reports spans as UTF-8 byte offsets, but JavaScript strings and
|
|
267
|
-
// MagicString use UTF-16 code-unit indices. Without this conversion,
|
|
268
|
-
// every emoji / accented char / CJK char shifts all subsequent offsets.
|
|
269
|
-
const byteToChar = astUtils.buildByteToCharMap(content);
|
|
270
|
-
if (byteToChar) {
|
|
271
|
-
astUtils.convertSpansToCharIndices(ast, byteToChar);
|
|
272
|
-
}
|
|
261
|
+
// Normalize spans to file-relative char indices. SWC reports spans as UTF-8
|
|
262
|
+
// byte offsets, but JavaScript strings and MagicString use UTF-16 code-unit
|
|
263
|
+
// indices — without the conversion every emoji / accented char / CJK char
|
|
264
|
+
// shifts all subsequent offsets.
|
|
265
|
+
astUtils.normalizeSpansToCharIndices(ast, content);
|
|
273
266
|
// Detect React function component boundaries
|
|
274
267
|
detectComponentBoundaries(ast, content, components);
|
|
275
268
|
// Visit AST to find string literals
|
package/dist/cjs/linter.js
CHANGED
|
@@ -601,11 +601,7 @@ class Linter extends node_events.EventEmitter {
|
|
|
601
601
|
// (findHardcodedStrings/lintInterpolationParams locate issues via text
|
|
602
602
|
// search and don't read spans, so this only affects ignore handling.)
|
|
603
603
|
try {
|
|
604
|
-
|
|
605
|
-
astUtils.normalizeASTSpans(ast, spanBase);
|
|
606
|
-
const byteToChar = astUtils.buildByteToCharMap(code);
|
|
607
|
-
if (byteToChar)
|
|
608
|
-
astUtils.convertSpansToCharIndices(ast, byteToChar);
|
|
604
|
+
astUtils.normalizeSpansToCharIndices(ast, code);
|
|
609
605
|
}
|
|
610
606
|
catch {
|
|
611
607
|
// If span normalisation fails for any reason, fall back to text-based
|
package/dist/esm/cli.js
CHANGED
|
@@ -31,7 +31,7 @@ const program = new Command();
|
|
|
31
31
|
program
|
|
32
32
|
.name('i18next-cli')
|
|
33
33
|
.description('A unified, high-performance i18next CLI.')
|
|
34
|
-
.version('1.67.
|
|
34
|
+
.version('1.67.5'); // This string is replaced with the actual version at build time by rollup
|
|
35
35
|
// new: global config override option
|
|
36
36
|
program.option('-c, --config <path>', 'Path to i18next-cli config file (overrides detection)');
|
|
37
37
|
program
|
|
@@ -8,7 +8,7 @@ import { getTranslations } from './translation-manager.js';
|
|
|
8
8
|
import { validateExtractorConfig, ExtractorError } from '../../utils/validation.js';
|
|
9
9
|
import { ConflictError } from '../plugin-manager.js';
|
|
10
10
|
import { extractKeysFromComments } from '../parsers/comment-parser.js';
|
|
11
|
-
import {
|
|
11
|
+
import { normalizeSpansToCharIndices } from '../parsers/ast-utils.js';
|
|
12
12
|
import { ConsoleLogger } from '../../utils/logger.js';
|
|
13
13
|
import { inferFormatFromPath, loadRawJson5Content, serializeTranslationFile } from '../../utils/file-utils.js';
|
|
14
14
|
import { shouldShowFunnel, recordFunnelShown } from '../../utils/funnel-msg-tracker.js';
|
|
@@ -239,14 +239,11 @@ async function processFile(file, plugins, astVisitors, pluginContext, config, lo
|
|
|
239
239
|
throw new ExtractorError('Failed to process file', file, err);
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
// Normalize SWC span offsets so every span is file-relative (0-based)
|
|
243
|
-
// SWC accumulates byte offsets across successive parse()
|
|
244
|
-
//
|
|
245
|
-
//
|
|
246
|
-
|
|
247
|
-
const firstTokenIdx = findFirstTokenIndex(code);
|
|
248
|
-
const spanBase = ast.span.start - firstTokenIdx;
|
|
249
|
-
normalizeASTSpans(ast, spanBase);
|
|
242
|
+
// Normalize SWC span offsets so every span is a file-relative (0-based)
|
|
243
|
+
// character index. SWC accumulates byte offsets across successive parse()
|
|
244
|
+
// calls and Module.span.start points to the first token, NOT to byte 0 of
|
|
245
|
+
// the source.
|
|
246
|
+
normalizeSpansToCharIndices(ast, code);
|
|
250
247
|
// "Wire up" the visitor's scope method to the context.
|
|
251
248
|
// This avoids a circular dependency while giving plugins access to the scope.
|
|
252
249
|
pluginContext.getVarFromScope = astVisitors.getVarFromScope.bind(astVisitors);
|
|
@@ -346,8 +343,7 @@ async function preScanFile(file, astVisitors, config, logger = new ConsoleLogger
|
|
|
346
343
|
throw new ExtractorError('Failed to pre-scan file', file, err);
|
|
347
344
|
}
|
|
348
345
|
}
|
|
349
|
-
|
|
350
|
-
normalizeASTSpans(ast, ast.span.start - firstTokenIdx);
|
|
346
|
+
normalizeSpansToCharIndices(ast, code);
|
|
351
347
|
astVisitors.setCurrentFile(file, code);
|
|
352
348
|
astVisitors.preScanForConstants(ast);
|
|
353
349
|
}
|
|
@@ -166,6 +166,23 @@ function convertSpansToCharIndices(node, byteToChar) {
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* Normalises every span in a freshly parsed SWC AST to a file-relative UTF-16
|
|
171
|
+
* character index — the unit JavaScript strings, MagicString and
|
|
172
|
+
* `lineColumnFromOffset` all use.
|
|
173
|
+
*
|
|
174
|
+
* Combines the two steps that must always happen together: subtracting SWC's
|
|
175
|
+
* accumulated base (which is expressed in UTF-8 *bytes*, hence the
|
|
176
|
+
* `Buffer.byteLength` of the leading trivia) and converting the remaining byte
|
|
177
|
+
* offsets to char indices.
|
|
178
|
+
*/
|
|
179
|
+
function normalizeSpansToCharIndices(ast, code) {
|
|
180
|
+
const firstTokenByteIdx = Buffer.byteLength(code.slice(0, findFirstTokenIndex(code)), 'utf8');
|
|
181
|
+
normalizeASTSpans(ast, ast.span.start - firstTokenByteIdx);
|
|
182
|
+
const byteToChar = buildByteToCharMap(code);
|
|
183
|
+
if (byteToChar)
|
|
184
|
+
convertSpansToCharIndices(ast, byteToChar);
|
|
185
|
+
}
|
|
169
186
|
// ─── Ignore-comment helpers ──────────────────────────────────────────────────
|
|
170
187
|
/**
|
|
171
188
|
* Matches the shared ignore directive used by both the instrumenter and the
|
|
@@ -353,4 +370,4 @@ function getObjectPropValue(object, propName, identifierResolver) {
|
|
|
353
370
|
return undefined;
|
|
354
371
|
}
|
|
355
372
|
|
|
356
|
-
export { buildByteToCharMap, collectIgnoredLineRanges, convertSpansToCharIndices, findFirstTokenIndex, getObjectPropValue, getObjectPropValueExpression, getObjectProperty, isSimpleTemplateLiteral, lineColumnFromOffset, normalizeASTSpans };
|
|
373
|
+
export { buildByteToCharMap, collectIgnoredLineRanges, convertSpansToCharIndices, findFirstTokenIndex, getObjectPropValue, getObjectPropValueExpression, getObjectProperty, isSimpleTemplateLiteral, lineColumnFromOffset, normalizeASTSpans, normalizeSpansToCharIndices };
|
|
@@ -10,7 +10,7 @@ import { createKeyRegistry, generateKeyFromContent } from './key-generator.js';
|
|
|
10
10
|
import { createSpinnerLike } from '../../utils/wrap-ora.js';
|
|
11
11
|
import { ConsoleLogger } from '../../utils/logger.js';
|
|
12
12
|
import { ignoredAttributeSet } from '../../utils/jsx-attributes.js';
|
|
13
|
-
import {
|
|
13
|
+
import { normalizeSpansToCharIndices, collectIgnoredLineRanges } from '../../extractor/parsers/ast-utils.js';
|
|
14
14
|
import { getOutputPath } from '../../utils/file-utils.js';
|
|
15
15
|
|
|
16
16
|
/**
|
|
@@ -252,18 +252,11 @@ async function scanFileForCandidates(content, file, config) {
|
|
|
252
252
|
throw err;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
|
-
// Normalize spans
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
// SWC reports spans as UTF-8 byte offsets, but JavaScript strings and
|
|
261
|
-
// MagicString use UTF-16 code-unit indices. Without this conversion,
|
|
262
|
-
// every emoji / accented char / CJK char shifts all subsequent offsets.
|
|
263
|
-
const byteToChar = buildByteToCharMap(content);
|
|
264
|
-
if (byteToChar) {
|
|
265
|
-
convertSpansToCharIndices(ast, byteToChar);
|
|
266
|
-
}
|
|
255
|
+
// Normalize spans to file-relative char indices. SWC reports spans as UTF-8
|
|
256
|
+
// byte offsets, but JavaScript strings and MagicString use UTF-16 code-unit
|
|
257
|
+
// indices — without the conversion every emoji / accented char / CJK char
|
|
258
|
+
// shifts all subsequent offsets.
|
|
259
|
+
normalizeSpansToCharIndices(ast, content);
|
|
267
260
|
// Detect React function component boundaries
|
|
268
261
|
detectComponentBoundaries(ast, content, components);
|
|
269
262
|
// Visit AST to find string literals
|
package/dist/esm/linter.js
CHANGED
|
@@ -7,7 +7,7 @@ import { styleText } from 'node:util';
|
|
|
7
7
|
import { ConsoleLogger } from './utils/logger.js';
|
|
8
8
|
import { createSpinnerLike } from './utils/wrap-ora.js';
|
|
9
9
|
import { acceptedTags, translatableAttributes, ignoredTags, ignoredAttributeLowerSet } from './utils/jsx-attributes.js';
|
|
10
|
-
import {
|
|
10
|
+
import { normalizeSpansToCharIndices, collectIgnoredLineRanges, lineColumnFromOffset } from './extractor/parsers/ast-utils.js';
|
|
11
11
|
import { matchesFunctionPattern } from './extractor/utils/function-matcher.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
@@ -599,11 +599,7 @@ class Linter extends EventEmitter {
|
|
|
599
599
|
// (findHardcodedStrings/lintInterpolationParams locate issues via text
|
|
600
600
|
// search and don't read spans, so this only affects ignore handling.)
|
|
601
601
|
try {
|
|
602
|
-
|
|
603
|
-
normalizeASTSpans(ast, spanBase);
|
|
604
|
-
const byteToChar = buildByteToCharMap(code);
|
|
605
|
-
if (byteToChar)
|
|
606
|
-
convertSpansToCharIndices(ast, byteToChar);
|
|
602
|
+
normalizeSpansToCharIndices(ast, code);
|
|
607
603
|
}
|
|
608
604
|
catch {
|
|
609
605
|
// If span normalisation fails for any reason, fall back to text-based
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extractor.d.ts","sourceRoot":"","sources":["../../../src/extractor/core/extractor.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,MAAM,EAAE,oBAAoB,EAAE,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAO5G,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAK/C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAsB,YAAY,CAChC,MAAM,EAAE,oBAAoB,EAC5B,OAAO,GAAE;IACP,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CACX,GACL,OAAO,CAAC;IAAE,cAAc,EAAE,OAAO,CAAC;IAAC,SAAS,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,iBAAiB,EAAE,CAAA;CAAE,CAAC,CAwExF;AAwBD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAsB,WAAW,CAC/B,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,WAAW,EACxB,aAAa,EAAE,aAAa,EAC5B,MAAM,EAAE,IAAI,CAAC,oBAAoB,EAAE,SAAS,CAAC,EAC7C,MAAM,GAAE,MAA4B,EACpC,UAAU,CAAC,EAAE,MAAM,EAAE,GACpB,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"extractor.d.ts","sourceRoot":"","sources":["../../../src/extractor/core/extractor.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,MAAM,EAAE,oBAAoB,EAAE,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAO5G,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAK/C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAsB,YAAY,CAChC,MAAM,EAAE,oBAAoB,EAC5B,OAAO,GAAE;IACP,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CACX,GACL,OAAO,CAAC;IAAE,cAAc,EAAE,OAAO,CAAC;IAAC,SAAS,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,iBAAiB,EAAE,CAAA;CAAE,CAAC,CAwExF;AAwBD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAsB,WAAW,CAC/B,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,WAAW,EACxB,aAAa,EAAE,aAAa,EAC5B,MAAM,EAAE,IAAI,CAAC,oBAAoB,EAAE,SAAS,CAAC,EAC7C,MAAM,GAAE,MAA4B,EACpC,UAAU,CAAC,EAAE,MAAM,EAAE,GACpB,OAAO,CAAC,IAAI,CAAC,CAiJf;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAsB,WAAW,CAC/B,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,IAAI,CAAC,oBAAoB,EAAE,SAAS,CAAC,EAC7C,MAAM,GAAE,MAA4B,EACpC,UAAU,CAAC,EAAE,MAAM,EAAE,GACpB,OAAO,CAAC,IAAI,CAAC,CA4Df;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAsB,OAAO,CAAE,MAAM,EAAE,oBAAoB,EAAE,EAAE,uBAA+B,EAAE,GAAE;IAAE,uBAAuB,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,OAAO,CAAC,iBAAiB,EAAE,CAAC,CAO1K"}
|
|
@@ -54,6 +54,17 @@ export declare function buildByteToCharMap(content: string): number[] | null;
|
|
|
54
54
|
* pre-built lookup table.
|
|
55
55
|
*/
|
|
56
56
|
export declare function convertSpansToCharIndices(node: any, byteToChar: number[]): void;
|
|
57
|
+
/**
|
|
58
|
+
* Normalises every span in a freshly parsed SWC AST to a file-relative UTF-16
|
|
59
|
+
* character index — the unit JavaScript strings, MagicString and
|
|
60
|
+
* `lineColumnFromOffset` all use.
|
|
61
|
+
*
|
|
62
|
+
* Combines the two steps that must always happen together: subtracting SWC's
|
|
63
|
+
* accumulated base (which is expressed in UTF-8 *bytes*, hence the
|
|
64
|
+
* `Buffer.byteLength` of the leading trivia) and converting the remaining byte
|
|
65
|
+
* offsets to char indices.
|
|
66
|
+
*/
|
|
67
|
+
export declare function normalizeSpansToCharIndices(ast: any, code: string): void;
|
|
57
68
|
/**
|
|
58
69
|
* Scans `code` for ignore-directive comments and returns a Set of 1-based line
|
|
59
70
|
* numbers whose issues/strings should be suppressed.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ast-utils.d.ts","sourceRoot":"","sources":["../../../src/extractor/parsers/ast-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAc,gBAAgB,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAE1F;;;;;;;;;GASG;AACH,wBAAgB,mBAAmB,CAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CA2BzD;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,CA0BhE;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAQhH;AAID;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAAE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CA0BpE;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CAAE,IAAI,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,CAwBhF;AAgBD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,wBAAwB,CAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CA4D7E;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,iBAAiB,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,qDAU5E;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,4BAA4B,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAKhH;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAE1E;AAED,KAAK,kBAAkB,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;AAEjF;;;;;;;;;;;;GAYG;AACH,wBAAgB,kBAAkB,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,EAAE,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAkB9J"}
|
|
1
|
+
{"version":3,"file":"ast-utils.d.ts","sourceRoot":"","sources":["../../../src/extractor/parsers/ast-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAc,gBAAgB,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAE1F;;;;;;;;;GASG;AACH,wBAAgB,mBAAmB,CAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CA2BzD;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,CA0BhE;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAQhH;AAID;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAAE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CA0BpE;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CAAE,IAAI,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,CAwBhF;AAED;;;;;;;;;GASG;AACH,wBAAgB,2BAA2B,CAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,CAKzE;AAgBD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,wBAAwB,CAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CA4D7E;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,iBAAiB,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,qDAU5E;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,4BAA4B,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAKhH;AAED;;;;;;;GAOG;AACH,wBAAgB,uBAAuB,CAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAE1E;AAED,KAAK,kBAAkB,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;AAEjF;;;;;;;;;;;;GAYG;AACH,wBAAgB,kBAAkB,CAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,EAAE,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAkB9J"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instrumenter.d.ts","sourceRoot":"","sources":["../../../src/instrumenter/core/instrumenter.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,MAAM,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,eAAe,EAA6B,sBAAsB,EAAiE,MAAM,gBAAgB,CAAA;AAU1N;;;;;;;;GAQG;AACH,wBAAsB,eAAe,CACnC,MAAM,EAAE,oBAAoB,EAC5B,OAAO,EAAE,mBAAmB,EAC5B,MAAM,GAAE,MAA4B,GACnC,OAAO,CAAC,sBAAsB,CAAC,CAoNjC;
|
|
1
|
+
{"version":3,"file":"instrumenter.d.ts","sourceRoot":"","sources":["../../../src/instrumenter/core/instrumenter.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,MAAM,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,eAAe,EAA6B,sBAAsB,EAAiE,MAAM,gBAAgB,CAAA;AAU1N;;;;;;;;GAQG;AACH,wBAAsB,eAAe,CACnC,MAAM,EAAE,oBAAoB,EAC5B,OAAO,EAAE,mBAAmB,EAC5B,MAAM,GAAE,MAA4B,GACnC,OAAO,CAAC,sBAAsB,CAAC,CAoNjC;AAyuCD;;GAEG;AACH,wBAAsB,mBAAmB,IAAK,OAAO,CAAC,OAAO,CAAC,CAU7D;AAID,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG,aAAa,GAAG,MAAM,GAAG,SAAS,CAAA;AA6B/E;;;;;;;;;GASG;AACH,wBAAsB,wBAAwB,IAAK,OAAO,CAAC,kBAAkB,CAAC,CA8B7E;AAED;;GAEG;AACH,wBAAsB,wBAAwB,IAAK,OAAO,CAAC,OAAO,CAAC,CAOlE;AAwBD;;;;;;GAMG;AACH,wBAAsB,wBAAwB,IAAK,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAWxE;AAmYD;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,UAAU,EAAE,eAAe,EAAE,EAC7B,MAAM,EAAE,oBAAoB,EAC5B,SAAS,CAAC,EAAE,MAAM,EAClB,MAAM,GAAE,MAA4B,GACnC,OAAO,CAAC,IAAI,CAAC,CAoDf"}
|
package/types/linter.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"linter.d.ts","sourceRoot":"","sources":["../src/linter.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAO1C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,EAAE,SAAS,EAA6B,MAAM,YAAY,CAAA;AA0epG,KAAK,cAAc,GAAG;IACpB,QAAQ,EAAE;QAAC;YACT,OAAO,EAAE,MAAM,CAAC;SACjB;KAAC,CAAC;IACH,IAAI,EAAE;QAAC;YACL,OAAO,EAAE,OAAO,CAAC;YACjB,OAAO,EAAE,MAAM,CAAC;YAChB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;SACpC;KAAC,CAAC;IACH,KAAK,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;CACvB,CAAA;AAED,eAAO,MAAM,uBAAuB,EAAE,MAAM,EAAiD,CAAA;AAC7F,eAAO,MAAM,6BAA6B,EAAE,MAAM,EAAqD,CAAA;AAKvG,qBAAa,MAAO,SAAQ,YAAY,CAAC,cAAc,CAAC;IACtD,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,MAAM,CAAQ;gBAET,MAAM,EAAE,oBAAoB,EAAE,MAAM,GAAE,MAA4B;IAM/E,SAAS,CAAE,KAAK,EAAE,OAAO;IAanB,GAAG;;;;;;;
|
|
1
|
+
{"version":3,"file":"linter.d.ts","sourceRoot":"","sources":["../src/linter.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAO1C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,EAAE,SAAS,EAA6B,MAAM,YAAY,CAAA;AA0epG,KAAK,cAAc,GAAG;IACpB,QAAQ,EAAE;QAAC;YACT,OAAO,EAAE,MAAM,CAAC;SACjB;KAAC,CAAC;IACH,IAAI,EAAE;QAAC;YACL,OAAO,EAAE,OAAO,CAAC;YACjB,OAAO,EAAE,MAAM,CAAC;YAChB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;SACpC;KAAC,CAAC;IACH,KAAK,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;CACvB,CAAA;AAED,eAAO,MAAM,uBAAuB,EAAE,MAAM,EAAiD,CAAA;AAC7F,eAAO,MAAM,6BAA6B,EAAE,MAAM,EAAqD,CAAA;AAKvG,qBAAa,MAAO,SAAQ,YAAY,CAAC,cAAc,CAAC;IACtD,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,MAAM,CAAQ;gBAET,MAAM,EAAE,oBAAoB,EAAE,MAAM,GAAE,MAA4B;IAM/E,SAAS,CAAE,KAAK,EAAE,OAAO;IAanB,GAAG;;;;;;;IAoIT,OAAO,CAAC,uBAAuB;YAOjB,qBAAqB;IAWnC,OAAO,CAAC,kBAAkB;IAM1B,OAAO,CAAC,0BAA0B;YAUpB,qBAAqB;YAgBrB,uBAAuB;CAgBtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,wBAAsB,SAAS,CAAE,MAAM,EAAE,oBAAoB;;;;;;GAE5D;AAED,wBAAsB,YAAY,CAChC,MAAM,EAAE,oBAAoB,EAC5B,OAAO,GAAE;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAO,iBA0CnD"}
|