@quantracode/vibecheck 0.2.2 → 0.2.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/dist/index.d.ts +3 -0
- package/dist/index.js +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -5596,7 +5596,7 @@ function createArtifact(findings, targetDir, fileCount, repoName, metrics, phase
|
|
|
5596
5596
|
generatedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
5597
5597
|
tool: {
|
|
5598
5598
|
name: "vibecheck",
|
|
5599
|
-
version:
|
|
5599
|
+
version: CLI_VERSION
|
|
5600
5600
|
},
|
|
5601
5601
|
repo: {
|
|
5602
5602
|
name,
|
|
@@ -9003,8 +9003,9 @@ async function keygenAction() {
|
|
|
9003
9003
|
}
|
|
9004
9004
|
|
|
9005
9005
|
// src/index.ts
|
|
9006
|
+
var CLI_VERSION = "0.2.3";
|
|
9006
9007
|
var program = new Command();
|
|
9007
|
-
program.name("vibecheck").description("Security scanner for modern web applications").version(
|
|
9008
|
+
program.name("vibecheck").description("Security scanner for modern web applications").version(CLI_VERSION);
|
|
9008
9009
|
registerScanCommand(program);
|
|
9009
9010
|
registerExplainCommand(program);
|
|
9010
9011
|
registerDemoArtifactCommand(program);
|
|
@@ -9014,3 +9015,6 @@ registerWaiversCommand(program);
|
|
|
9014
9015
|
registerViewCommand(program);
|
|
9015
9016
|
registerLicenseCommand(program);
|
|
9016
9017
|
program.parse();
|
|
9018
|
+
export {
|
|
9019
|
+
CLI_VERSION
|
|
9020
|
+
};
|