verimu 0.0.17 → 0.0.18
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/cli.mjs +4 -8
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -14093,7 +14093,6 @@ var require_lib3 = __commonJS({
|
|
|
14093
14093
|
// src/cli.ts
|
|
14094
14094
|
import { resolve } from "path";
|
|
14095
14095
|
import { createRequire } from "module";
|
|
14096
|
-
import { fileURLToPath } from "url";
|
|
14097
14096
|
|
|
14098
14097
|
// src/scan.ts
|
|
14099
14098
|
import { writeFile } from "fs/promises";
|
|
@@ -18121,13 +18120,10 @@ function printHelp() {
|
|
|
18121
18120
|
Dashboard: https://app.verimu.com
|
|
18122
18121
|
`);
|
|
18123
18122
|
}
|
|
18124
|
-
|
|
18125
|
-
|
|
18126
|
-
|
|
18127
|
-
|
|
18128
|
-
process.exit(2);
|
|
18129
|
-
});
|
|
18130
|
-
}
|
|
18123
|
+
main().catch((err) => {
|
|
18124
|
+
console.error("Fatal:", err);
|
|
18125
|
+
process.exit(2);
|
|
18126
|
+
});
|
|
18131
18127
|
export {
|
|
18132
18128
|
parseArgs
|
|
18133
18129
|
};
|