loor-cli 0.1.0 → 0.1.1
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/bin.js +1 -1
- package/dist/{cli-PUXM5F6I.js → cli-KVG4H23K.js} +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/bin.js
CHANGED
|
@@ -12,7 +12,7 @@ try {
|
|
|
12
12
|
const { startMcpServer } = await import("./server-R2ZGYYBT.js");
|
|
13
13
|
await startMcpServer();
|
|
14
14
|
} else {
|
|
15
|
-
const { cli } = await import("./cli-
|
|
15
|
+
const { cli } = await import("./cli-KVG4H23K.js");
|
|
16
16
|
await cli.parseAsync(process.argv);
|
|
17
17
|
}
|
|
18
18
|
} catch (err) {
|
|
@@ -528,6 +528,9 @@ Examples:
|
|
|
528
528
|
}
|
|
529
529
|
}
|
|
530
530
|
log.info(`Selected packages: ${selectedPackageNames.join(", ")}`);
|
|
531
|
+
} else if (opts.apps) {
|
|
532
|
+
selectedPackageNames = [];
|
|
533
|
+
log.info("Skipping optional packages (use --packages to include)");
|
|
531
534
|
} else {
|
|
532
535
|
const optionalPackages = allPackages.filter((pkg) => !requiredSet.has(pkg.name));
|
|
533
536
|
selectedPackageNames = await promptPackages(optionalPackages, appTypes);
|