@kb-labs/qa-core 0.6.0 → 2.9.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/dist/history/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HistoryEntry, QAResults, WorkspacePackage,
|
|
1
|
+
import { HistoryEntry, QAResults, WorkspacePackage, EnrichedTrendResult, TrendResult, RegressionResult, PackageTimelineResponse } from '@kb-labs/qa-contracts';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Load history entries from disk.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { L as LastRunData, c as collectSubmoduleInfo,
|
|
1
|
+
export { L as LastRunData, c as collectSubmoduleInfo, g as getSubmoduleInfo, a as getWorkspacePackages, l as loadLastRun, r as runLintCheck, b as runQA, d as runTestCheck, e as runTypeCheck, s as saveLastRun } from './last-run-store-CVsUqnU0.js';
|
|
2
2
|
export { captureBaseline, compareWithBaseline, createBaselineFromResults, loadBaseline, saveBaseline } from './baseline/index.js';
|
|
3
3
|
export { analyzeEnrichedTrends, analyzeTrends, appendEntry, createHistoryEntry, detectRegressions, getPackageTimeline, loadHistory, saveHistory } from './history/index.js';
|
|
4
4
|
export { ReportSection, buildBaselineReport, buildDetailedJsonReport, buildDetailedRunReport, buildHistoryTable, buildJsonReport, buildRegressionsReport, buildRunReport, buildTrendsReport, groupErrors, groupResults } from './report/index.js';
|
|
@@ -75,4 +75,4 @@ declare function saveLastRun(rootDir: string, results: QAResults, packages: Work
|
|
|
75
75
|
*/
|
|
76
76
|
declare function loadLastRun(rootDir: string): LastRunData | null;
|
|
77
77
|
|
|
78
|
-
export { type LastRunData as L,
|
|
78
|
+
export { type LastRunData as L, getWorkspacePackages as a, runQA as b, collectSubmoduleInfo as c, runTestCheck as d, runTypeCheck as e, getSubmoduleInfo as g, loadLastRun as l, runLintCheck as r, saveLastRun as s };
|
package/dist/report/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { QAResults, BaselineDiff, QAReport,
|
|
1
|
+
import { QAResults, GroupedResults, BaselineDiff, QAReport, BaselineSnapshot, HistoryEntry, RegressionResult, TrendResult, WorkspacePackage, QAPluginConfig, QAErrorGroupsResponse } from '@kb-labs/qa-contracts';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Build a structured JSON report from QA results.
|
package/dist/runner/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { L as LastRunData, c as collectSubmoduleInfo,
|
|
1
|
+
export { L as LastRunData, c as collectSubmoduleInfo, g as getSubmoduleInfo, a as getWorkspacePackages, l as loadLastRun, r as runLintCheck, b as runQA, d as runTestCheck, e as runTypeCheck, s as saveLastRun } from '../last-run-store-CVsUqnU0.js';
|
|
2
2
|
import { WorkspacePackage, CheckResult } from '@kb-labs/qa-contracts';
|
|
3
3
|
|
|
4
4
|
interface CacheEntry {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/qa-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core business logic for KB Labs QA Plugin — runner, baseline, history, and reporting.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -34,31 +34,31 @@
|
|
|
34
34
|
"LICENSE"
|
|
35
35
|
],
|
|
36
36
|
"sideEffects": false,
|
|
37
|
-
"scripts": {
|
|
38
|
-
"pretype-check": "pnpm --filter @kb-labs/qa-core build",
|
|
39
|
-
"clean": "rimraf dist",
|
|
40
|
-
"build": "tsup --config tsup.config.ts",
|
|
41
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
42
|
-
"lint": "eslint src --ext .ts",
|
|
43
|
-
"lint:fix": "eslint . --fix",
|
|
44
|
-
"type-check": "tsc --noEmit",
|
|
45
|
-
"test": "vitest run --passWithNoTests",
|
|
46
|
-
"test:watch": "vitest"
|
|
47
|
-
},
|
|
48
37
|
"dependencies": {
|
|
49
|
-
"@kb-labs/qa-contracts": "
|
|
38
|
+
"@kb-labs/qa-contracts": "2.9.0"
|
|
50
39
|
},
|
|
51
40
|
"devDependencies": {
|
|
52
|
-
"@kb-labs/devkit": "link:../../../../infra/kb-labs-devkit",
|
|
53
41
|
"@types/node": "^24.3.3",
|
|
54
42
|
"eslint": "^9",
|
|
55
43
|
"rimraf": "^6.0.1",
|
|
56
44
|
"tsup": "^8.5.0",
|
|
57
45
|
"typescript": "^5.6.3",
|
|
58
|
-
"vitest": "^3.2.4"
|
|
46
|
+
"vitest": "^3.2.4",
|
|
47
|
+
"@kb-labs/devkit": "2.9.0"
|
|
59
48
|
},
|
|
60
49
|
"engines": {
|
|
61
50
|
"node": ">=20.0.0",
|
|
62
51
|
"pnpm": ">=9.0.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"pretype-check": "pnpm --filter @kb-labs/qa-core build",
|
|
55
|
+
"clean": "rimraf dist",
|
|
56
|
+
"build": "tsup --config tsup.config.ts",
|
|
57
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
58
|
+
"lint": "eslint src --ext .ts",
|
|
59
|
+
"lint:fix": "eslint . --fix",
|
|
60
|
+
"type-check": "tsc --noEmit",
|
|
61
|
+
"test": "vitest run --passWithNoTests",
|
|
62
|
+
"test:watch": "vitest"
|
|
63
63
|
}
|
|
64
|
-
}
|
|
64
|
+
}
|