We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 276206a commit f31e181Copy full SHA for f31e181
main.go
@@ -13,20 +13,23 @@ func main() {
13
Commands: []*cli.Command{
14
{
15
Name: "init",
16
+ Aliases: []string{"i"},
17
Usage: "Initialize a new project",
18
UsageText: "lux init [repository]\n\n" + "Example:\n" + " lux init myproject",
19
Action: initProject,
20
Args: true,
21
},
22
23
Name: "build",
24
+ Aliases: []string{"b"},
25
Usage: "Build the project",
26
UsageText: "lux build [path/to/package]\n\n" + "Example:\n" + " lux build .",
27
Action: buildAppCommand,
28
29
30
31
Name: "run",
32
+ Aliases: []string{"r"},
33
Usage: "Run the project",
34
UsageText: "lux run [path/to/package]\n\n" + "Example:\n" + " lux run .",
35
Action: runAppCommand,
0 commit comments