openkitt 0.1.7 → 0.1.8
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.js +6 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3391,7 +3391,7 @@ function readManifest(workspaceDir) {
|
|
|
3391
3391
|
// package.json
|
|
3392
3392
|
var package_default = {
|
|
3393
3393
|
name: "openkitt",
|
|
3394
|
-
version: "0.1.
|
|
3394
|
+
version: "0.1.8",
|
|
3395
3395
|
description: "AI-powered monorepo scaffolding CLI",
|
|
3396
3396
|
keywords: [
|
|
3397
3397
|
"cli",
|
|
@@ -3780,6 +3780,11 @@ async function startRepl(context) {
|
|
|
3780
3780
|
});
|
|
3781
3781
|
}
|
|
3782
3782
|
async function main() {
|
|
3783
|
+
if (process.argv.includes("--version") || process.argv.includes("-v")) {
|
|
3784
|
+
process.stdout.write(APP_VERSION + `
|
|
3785
|
+
`, () => process.exit(0));
|
|
3786
|
+
return;
|
|
3787
|
+
}
|
|
3783
3788
|
const program2 = createProgram();
|
|
3784
3789
|
program2.parse();
|
|
3785
3790
|
const options = program2.opts();
|