qodfy 0.1.4 → 0.1.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/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { Command } from "commander";
|
|
|
7
7
|
import pc from "picocolors";
|
|
8
8
|
import { scanProject } from "@qodfy/core";
|
|
9
9
|
var program = new Command();
|
|
10
|
-
program.name("qodfy").description("Launch readiness scanner for AI-built apps.").version("0.1.
|
|
10
|
+
program.name("qodfy").description("Launch readiness scanner for AI-built apps.").version("0.1.5");
|
|
11
11
|
program.command("scan").description("Scan a project for launch readiness issues.").option("-p, --path <path>", "Project path to scan", process.cwd()).option("--max-issues <number>", "Maximum number of issues to display", "50").action(async (options) => {
|
|
12
12
|
const pathResult = await resolveProjectPath(options.path);
|
|
13
13
|
if (!pathResult.ok) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qodfy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Open-source launch readiness scanner for AI-built apps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"qodfy",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"commander": "^14.0.3",
|
|
53
53
|
"picocolors": "^1.1.1",
|
|
54
|
-
"@qodfy/core": "^0.1.
|
|
54
|
+
"@qodfy/core": "^0.1.5"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/node": "^25.7.0",
|