@vibgrate/cli 2026.720.1 → 2026.720.2
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/baseline-WIZAFIJS.js +6 -0
- package/dist/{baseline-5QPV6API.js.map → baseline-WIZAFIJS.js.map} +1 -1
- package/dist/{chunk-VQLOVQZP.js → chunk-7R4O5CZD.js} +30 -9
- package/dist/chunk-7R4O5CZD.js.map +1 -0
- package/dist/{chunk-VFO5UDAT.js → chunk-BHA7QIPD.js} +185 -16
- package/dist/chunk-BHA7QIPD.js.map +1 -0
- package/dist/{chunk-VYSTOEAK.js → chunk-DDQ5JGBV.js} +3 -3
- package/dist/{chunk-VYSTOEAK.js.map → chunk-DDQ5JGBV.js.map} +1 -1
- package/dist/{chunk-AJDUMRVI.js → chunk-OD5654VF.js} +3 -3
- package/dist/{chunk-AJDUMRVI.js.map → chunk-OD5654VF.js.map} +1 -1
- package/dist/cli.js +193 -95
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +21 -5
- package/dist/index.js +3 -3
- package/dist/parse-worker.js +1 -1
- package/grammars/tree-sitter-objc.wasm +0 -0
- package/grammars/tree-sitter-ocaml.wasm +0 -0
- package/grammars/tree-sitter-rescript.wasm +0 -0
- package/grammars/tree-sitter-solidity.wasm +0 -0
- package/package.json +7 -7
- package/dist/baseline-5QPV6API.js +0 -6
- package/dist/chunk-VFO5UDAT.js.map +0 -1
- package/dist/chunk-VQLOVQZP.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"baseline-
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"baseline-WIZAFIJS.js"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { hashString, langById, shortId, canonicalize, grammarSetVersion, hashBytes, langForExtension, setGrammarsOverride, parseSource } from './chunk-
|
|
2
|
-
import { writeTextFile, pathExists, readJsonFile, loadConfig, computeUpgradeImpact, getChangelogSignals, gitHistoryAvailable, buildVersionTimelines, findPackageTimeline, severityRank, projectTypeToVulnEcosystem, VERSION } from './chunk-
|
|
1
|
+
import { hashString, langById, shortId, canonicalize, grammarSetVersion, hashBytes, langForExtension, setGrammarsOverride, parseSource } from './chunk-BHA7QIPD.js';
|
|
2
|
+
import { writeTextFile, pathExists, readJsonFile, loadConfig, computeUpgradeImpact, getChangelogSignals, gitHistoryAvailable, buildVersionTimelines, findPackageTimeline, severityRank, projectTypeToVulnEcosystem, VERSION } from './chunk-OD5654VF.js';
|
|
3
3
|
import * as fs19 from 'fs';
|
|
4
4
|
import { spawnSync, execFileSync } from 'child_process';
|
|
5
5
|
import * as path19 from 'path';
|
|
@@ -336,7 +336,7 @@ function formatBytes(n) {
|
|
|
336
336
|
if (n >= 1024) return `${(n / 1024).toFixed(1)} KiB`;
|
|
337
337
|
return `${n} B`;
|
|
338
338
|
}
|
|
339
|
-
var JS_TS_EXT = [".ts", ".tsx", ".mts", ".cts", ".js", ".jsx", ".mjs", ".cjs"];
|
|
339
|
+
var JS_TS_EXT = [".ts", ".tsx", ".mts", ".cts", ".js", ".jsx", ".mjs", ".cjs", ".vue", ".svelte", ".astro"];
|
|
340
340
|
var OTHER_EXT = [
|
|
341
341
|
".py",
|
|
342
342
|
".pyi",
|
|
@@ -365,7 +365,13 @@ var OTHER_EXT = [
|
|
|
365
365
|
".hpp",
|
|
366
366
|
".hh",
|
|
367
367
|
".hxx",
|
|
368
|
-
".h"
|
|
368
|
+
".h",
|
|
369
|
+
".m",
|
|
370
|
+
".mm",
|
|
371
|
+
".ml",
|
|
372
|
+
".mli",
|
|
373
|
+
".res",
|
|
374
|
+
".sol"
|
|
369
375
|
];
|
|
370
376
|
var EXT_GROUPS = {
|
|
371
377
|
".py": [".py", ".pyi"],
|
|
@@ -399,7 +405,19 @@ Object.assign(EXT_GROUPS, {
|
|
|
399
405
|
".hpp": CPP_EXT,
|
|
400
406
|
".hh": CPP_EXT,
|
|
401
407
|
".hxx": CPP_EXT,
|
|
402
|
-
".h": [...CPP_EXT, ".c"]
|
|
408
|
+
".h": [...CPP_EXT, ".c"],
|
|
409
|
+
// ObjC #imports headers; ObjC++ additionally reaches C++ headers.
|
|
410
|
+
".m": [".h", ".m", ".mm"],
|
|
411
|
+
".mm": [".h", ".m", ".mm", ...CPP_EXT],
|
|
412
|
+
".ml": [".ml", ".mli"],
|
|
413
|
+
".mli": [".ml", ".mli"],
|
|
414
|
+
".res": [".res"],
|
|
415
|
+
".sol": [".sol"],
|
|
416
|
+
// Template containers: ERB fragments are Ruby; HTML/EJS script is JS.
|
|
417
|
+
".erb": [".rb", ".erb"],
|
|
418
|
+
".html": JS_TS_EXT,
|
|
419
|
+
".htm": JS_TS_EXT,
|
|
420
|
+
".ejs": JS_TS_EXT
|
|
403
421
|
});
|
|
404
422
|
function buildModuleResolver(root, relSet) {
|
|
405
423
|
const probe = makeProbe(relSet);
|
|
@@ -3372,9 +3390,12 @@ function recordCliCall(root, entry, now) {
|
|
|
3372
3390
|
now
|
|
3373
3391
|
);
|
|
3374
3392
|
}
|
|
3375
|
-
function
|
|
3393
|
+
function savingsLedgerPath(root) {
|
|
3376
3394
|
return path19.join(cacheDir(root), LEDGER);
|
|
3377
3395
|
}
|
|
3396
|
+
function ledgerPath(root) {
|
|
3397
|
+
return savingsLedgerPath(root);
|
|
3398
|
+
}
|
|
3378
3399
|
function savingsRecorded(root) {
|
|
3379
3400
|
return fs19.existsSync(ledgerPath(root));
|
|
3380
3401
|
}
|
|
@@ -7589,6 +7610,6 @@ function spdx(ctx) {
|
|
|
7589
7610
|
return JSON.stringify(doc, null, 2) + "\n";
|
|
7590
7611
|
}
|
|
7591
7612
|
|
|
7592
|
-
export { ASSISTANTS, CLI_TOOL_ALIASES, CliError,
|
|
7593
|
-
//# sourceMappingURL=chunk-
|
|
7594
|
-
//# sourceMappingURL=chunk-
|
|
7613
|
+
export { ASSISTANTS, CLI_TOOL_ALIASES, CliError, ECOSYSTEMS, ExitCode, FREE_PACK, GraphIndex, GraphSource, NPX_INVOCATION, ResourceLimitError, SAVINGS_TOOLS, SCHEMA_VERSION, SKIP_DIRS, SKIP_FILES, TOOLS, UsageError, addLibrary, analyze, applyCoverage, applyStaticTestLinkage, assessDocQuality, assistantById, availableRegionIds, buildFacts, buildGraph, buildModuleResolver, cacheDir, catalogPath, clearModelCache, clearStoredCredentials, cosine, countPending, countTokens, coveringTests, createServer, createWorkspaceDsn, credentialsPath, dashHostForIngestHost, decodeScipIndex, defaultGraphPath, detectAssistants, detectRunner, detectServeLaunch, discover, discoverModels, driftCount, driftFor, dsnCommand, embeddingsCached, enrichOnline, ensureGitignored, epistemicBreakdown, exportGraph, fetchHostedDocsCached, findGitRoot, findNodes, formatForExt, getNodeEmbeddings, gitignoreEntryForCredentials, groundGraph, hasDrift, homeCredentialsPath, hostedBase, identifierParts, impactOf, indexFor, ingestHostForRegionId, installAssistant, inventory, isModelReady, isTestFile, libDir, libId, loadCatalog, loadCoverage, loadEmbedder, loadGraph, loadSnapshot, localApiSurface, localPackageDocs, modelCacheInfo, nodeById, nodeEmbedText, parseDsn, parseGraph, parseJsonc, probeFreshness, projectCredentialsPath, publishPrivateLibrary, pushCommand, queryGraph, queryGraphSemantic, readDoc, readSavings, readScanArtifact, readStoredCredentials, readUsage, recordCliCall, recordSaving, refreshIfStale, relativeResolver, renderHtml, renderReport, resolveCliInvocation, resolveDsn, resolveEmbedModel, resolveIngestHost, resolveLib, resolveLimits, resolveOne, resolveVersion, sanitizeClient, saveCatalog, savingsLedgerPath, savingsRecorded, scipEdges, selectForBudget, serializeGraph, serveStdio, shortestPath, stableStringify, symbolsFromApi, testsToRun, unavailableMessage, uninstallAssistant, uploadScanArtifact, usageError, verifyDeterminism, vibgrateDir, writeArtifacts, writeNavigationConfig, writeSnapshot, writeStoredCredentials };
|
|
7614
|
+
//# sourceMappingURL=chunk-7R4O5CZD.js.map
|
|
7615
|
+
//# sourceMappingURL=chunk-7R4O5CZD.js.map
|