create-stackforge 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/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +5 -2
package/dist/cli.js
CHANGED
|
@@ -3202,7 +3202,7 @@ var require2 = createRequire(import.meta.url);
|
|
|
3202
3202
|
var { version } = require2("../package.json");
|
|
3203
3203
|
var program = new Command17();
|
|
3204
3204
|
program.name("create-stackforge").description("Universal full-stack boilerplate generator").version(version);
|
|
3205
|
-
program.addCommand(createCommand);
|
|
3205
|
+
program.addCommand(createCommand, { isDefault: true });
|
|
3206
3206
|
program.addCommand(listCommand);
|
|
3207
3207
|
program.addCommand(addCommand);
|
|
3208
3208
|
program.addCommand(removeCommand);
|