@l4yercak3/cli 1.0.6 → 1.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/bin/cli.js CHANGED
@@ -50,6 +50,12 @@ program
50
50
  .description(spreadCommand.description)
51
51
  .action(spreadCommand.handler);
52
52
 
53
+ // Add 'init' as an alias for 'spread'
54
+ program
55
+ .command('init')
56
+ .description('Initialize L4YERCAK3 in your project (alias for spread)')
57
+ .action(spreadCommand.handler);
58
+
53
59
  program
54
60
  .command(apiKeysCommand.command)
55
61
  .description(apiKeysCommand.description)