@cosmicdrift/kumiko-cli 0.2.7 → 0.2.9
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Standalone CLI for scaffolding Kumiko apps. `bunx @cosmicdrift/kumiko-cli new app <name>` produces a runnable workspace; `add feature <name>` mounts a feature automatically.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/CosmicDriftGameStudio/kumiko-framework/issues"
|
|
14
14
|
},
|
|
15
|
-
"homepage": "https://kumiko.
|
|
15
|
+
"homepage": "https://kumiko.rocks",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"kumiko": {
|
|
18
18
|
"runtime": "dev"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cosmicdrift/kumiko-dev-server": "0.
|
|
30
|
+
"@cosmicdrift/kumiko-dev-server": "0.21.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"registry": "https://registry.npmjs.org",
|
|
@@ -41,7 +41,7 @@ describe("kumiko cli", () => {
|
|
|
41
41
|
const joined = captured.logs.join("\n");
|
|
42
42
|
expect(joined).toContain("kumiko new app");
|
|
43
43
|
expect(joined).toContain("kumiko add feature");
|
|
44
|
-
expect(joined).toContain("docs.kumiko.
|
|
44
|
+
expect(joined).toContain("docs.kumiko.rocks");
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
test("no args prints help", async () => {
|
package/src/index.ts
CHANGED
|
@@ -69,7 +69,7 @@ function runNew(args: readonly string[], out: Output, cwd: string): number {
|
|
|
69
69
|
out.log("");
|
|
70
70
|
out.log("Next:");
|
|
71
71
|
out.log(` cd ${name}`);
|
|
72
|
-
out.log("
|
|
72
|
+
out.log(" bun install && cp .env.example .env");
|
|
73
73
|
out.log(" bun run boot");
|
|
74
74
|
return 0;
|
|
75
75
|
} catch (e) {
|
|
@@ -113,5 +113,5 @@ function printHelp(out: Output): void {
|
|
|
113
113
|
out.log(" kumiko --version Print version");
|
|
114
114
|
out.log(" kumiko --help This help");
|
|
115
115
|
out.log("");
|
|
116
|
-
out.log("Docs: https://docs.kumiko.
|
|
116
|
+
out.log("Docs: https://docs.kumiko.rocks");
|
|
117
117
|
}
|