@factiii/stack 0.1.30 → 0.1.31

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.
Files changed (2) hide show
  1. package/bin/stack +3 -3
  2. package/package.json +1 -1
package/bin/stack CHANGED
@@ -36,11 +36,11 @@ program
36
36
  await init(options);
37
37
  });
38
38
 
39
- // Default action: show help when no subcommand provided
39
+ // Default action: run scan when no subcommand provided (self-bootstrapping)
40
40
  program
41
- .action((options, command) => {
41
+ .action(async (options, command) => {
42
42
  if (command.args.length === 0) {
43
- program.help();
43
+ await scan({});
44
44
  }
45
45
  });
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factiii/stack",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "Infrastructure management package for deploying services to servers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",