@cosmicdrift/kumiko-cli 0.2.6 → 0.2.8

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.6",
3
+ "version": "0.2.8",
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.so",
15
+ "homepage": "https://kumiko.rocks",
16
16
  "type": "module",
17
17
  "kumiko": {
18
18
  "runtime": "dev"
@@ -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.so");
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(" yarn install && cp .env.example .env");
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.so");
116
+ out.log("Docs: https://docs.kumiko.rocks");
117
117
  }