@stacksjs/cli 0.58.49 → 0.58.50
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/index.js +2 -2
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ async function installStack(name, options) {
|
|
|
14
14
|
// src/cli.ts
|
|
15
15
|
import cac from "cac";
|
|
16
16
|
// package.json
|
|
17
|
-
var version = "0.58.
|
|
17
|
+
var version = "0.58.50";
|
|
18
18
|
|
|
19
19
|
// src/cli.ts
|
|
20
20
|
function cli(name, options) {
|
|
@@ -22,7 +22,7 @@ function cli(name, options) {
|
|
|
22
22
|
options = name;
|
|
23
23
|
name = options.name;
|
|
24
24
|
}
|
|
25
|
-
const cli2 = cac(name);
|
|
25
|
+
const cli2 = cac(name || "buddy");
|
|
26
26
|
cli2.help();
|
|
27
27
|
cli2.version(options?.version || version);
|
|
28
28
|
return cli2;
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED