qfai 0.6.0 → 0.6.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/README.md +206 -22
- package/dist/cli/index.cjs +125 -25
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.mjs +125 -25
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.cjs +2 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1179,8 +1179,8 @@ import { readFile as readFile4 } from "fs/promises";
|
|
|
1179
1179
|
import path7 from "path";
|
|
1180
1180
|
import { fileURLToPath } from "url";
|
|
1181
1181
|
async function resolveToolVersion() {
|
|
1182
|
-
if ("0.6.
|
|
1183
|
-
return "0.6.
|
|
1182
|
+
if ("0.6.3".length > 0) {
|
|
1183
|
+
return "0.6.3";
|
|
1184
1184
|
}
|
|
1185
1185
|
try {
|
|
1186
1186
|
const packagePath = resolvePackageJsonPath();
|
|
@@ -2624,13 +2624,11 @@ async function createReportData(root, validation, configResult) {
|
|
|
2624
2624
|
normalizeScSources(resolvedRoot, scSources)
|
|
2625
2625
|
);
|
|
2626
2626
|
const version = await resolveToolVersion();
|
|
2627
|
-
const reportFormatVersion = 1;
|
|
2628
2627
|
const displayRoot = toRelativePath(resolvedRoot, resolvedRoot);
|
|
2629
2628
|
const displayConfigPath = toRelativePath(resolvedRoot, configPath);
|
|
2630
2629
|
return {
|
|
2631
2630
|
tool: "qfai",
|
|
2632
2631
|
version,
|
|
2633
|
-
reportFormatVersion,
|
|
2634
2632
|
generatedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
2635
2633
|
root: displayRoot,
|
|
2636
2634
|
configPath: displayConfigPath,
|