qfai 0.6.0 → 0.6.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/README.md +2 -2
- 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.cjs
CHANGED
|
@@ -1232,8 +1232,8 @@ var import_promises7 = require("fs/promises");
|
|
|
1232
1232
|
var import_node_path7 = __toESM(require("path"), 1);
|
|
1233
1233
|
var import_node_url = require("url");
|
|
1234
1234
|
async function resolveToolVersion() {
|
|
1235
|
-
if ("0.6.
|
|
1236
|
-
return "0.6.
|
|
1235
|
+
if ("0.6.2".length > 0) {
|
|
1236
|
+
return "0.6.2";
|
|
1237
1237
|
}
|
|
1238
1238
|
try {
|
|
1239
1239
|
const packagePath = resolvePackageJsonPath();
|
|
@@ -2677,13 +2677,11 @@ async function createReportData(root, validation, configResult) {
|
|
|
2677
2677
|
normalizeScSources(resolvedRoot, scSources)
|
|
2678
2678
|
);
|
|
2679
2679
|
const version = await resolveToolVersion();
|
|
2680
|
-
const reportFormatVersion = 1;
|
|
2681
2680
|
const displayRoot = toRelativePath(resolvedRoot, resolvedRoot);
|
|
2682
2681
|
const displayConfigPath = toRelativePath(resolvedRoot, configPath);
|
|
2683
2682
|
return {
|
|
2684
2683
|
tool: "qfai",
|
|
2685
2684
|
version,
|
|
2686
|
-
reportFormatVersion,
|
|
2687
2685
|
generatedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
2688
2686
|
root: displayRoot,
|
|
2689
2687
|
configPath: displayConfigPath,
|