@h-rig/cli 0.0.6-alpha.5 → 0.0.6-alpha.6

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/bin/rig.js CHANGED
@@ -6629,7 +6629,7 @@ async function executeServer(context, args, options) {
6629
6629
  const authTokenResult = takeOption(pending, "--auth-token");
6630
6630
  pending = authTokenResult.rest;
6631
6631
  requireNoExtraArgs(pending, "bun run rig server start [--host <host>] [--port <n>] [--poll-ms <n>] [--auth-token <token>]");
6632
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "start"];
6632
+ const commandParts = ["rig-server", "start"];
6633
6633
  if (hostResult.value) {
6634
6634
  commandParts.push("--host", hostResult.value);
6635
6635
  }
@@ -6652,7 +6652,7 @@ async function executeServer(context, args, options) {
6652
6652
  const eventResult = takeOption(pending, "--event");
6653
6653
  pending = eventResult.rest;
6654
6654
  requireNoExtraArgs(pending, "bun run rig server notify-test [--event <type>]");
6655
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "notify-test"];
6655
+ const commandParts = ["rig-server", "notify-test"];
6656
6656
  if (eventResult.value) {
6657
6657
  commandParts.push("--event", eventResult.value);
6658
6658
  }
@@ -299,7 +299,7 @@ async function executeServer(context, args, options) {
299
299
  const authTokenResult = takeOption(pending, "--auth-token");
300
300
  pending = authTokenResult.rest;
301
301
  requireNoExtraArgs(pending, "bun run rig server start [--host <host>] [--port <n>] [--poll-ms <n>] [--auth-token <token>]");
302
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "start"];
302
+ const commandParts = ["rig-server", "start"];
303
303
  if (hostResult.value) {
304
304
  commandParts.push("--host", hostResult.value);
305
305
  }
@@ -322,7 +322,7 @@ async function executeServer(context, args, options) {
322
322
  const eventResult = takeOption(pending, "--event");
323
323
  pending = eventResult.rest;
324
324
  requireNoExtraArgs(pending, "bun run rig server notify-test [--event <type>]");
325
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "notify-test"];
325
+ const commandParts = ["rig-server", "notify-test"];
326
326
  if (eventResult.value) {
327
327
  commandParts.push("--event", eventResult.value);
328
328
  }
@@ -6423,7 +6423,7 @@ async function executeServer(context, args, options) {
6423
6423
  const authTokenResult = takeOption(pending, "--auth-token");
6424
6424
  pending = authTokenResult.rest;
6425
6425
  requireNoExtraArgs(pending, "bun run rig server start [--host <host>] [--port <n>] [--poll-ms <n>] [--auth-token <token>]");
6426
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "start"];
6426
+ const commandParts = ["rig-server", "start"];
6427
6427
  if (hostResult.value) {
6428
6428
  commandParts.push("--host", hostResult.value);
6429
6429
  }
@@ -6446,7 +6446,7 @@ async function executeServer(context, args, options) {
6446
6446
  const eventResult = takeOption(pending, "--event");
6447
6447
  pending = eventResult.rest;
6448
6448
  requireNoExtraArgs(pending, "bun run rig server notify-test [--event <type>]");
6449
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "notify-test"];
6449
+ const commandParts = ["rig-server", "notify-test"];
6450
6450
  if (eventResult.value) {
6451
6451
  commandParts.push("--event", eventResult.value);
6452
6452
  }
package/dist/src/index.js CHANGED
@@ -6625,7 +6625,7 @@ async function executeServer(context, args, options) {
6625
6625
  const authTokenResult = takeOption(pending, "--auth-token");
6626
6626
  pending = authTokenResult.rest;
6627
6627
  requireNoExtraArgs(pending, "bun run rig server start [--host <host>] [--port <n>] [--poll-ms <n>] [--auth-token <token>]");
6628
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "start"];
6628
+ const commandParts = ["rig-server", "start"];
6629
6629
  if (hostResult.value) {
6630
6630
  commandParts.push("--host", hostResult.value);
6631
6631
  }
@@ -6648,7 +6648,7 @@ async function executeServer(context, args, options) {
6648
6648
  const eventResult = takeOption(pending, "--event");
6649
6649
  pending = eventResult.rest;
6650
6650
  requireNoExtraArgs(pending, "bun run rig server notify-test [--event <type>]");
6651
- const commandParts = ["bun", "run", "packages/server/src/server.ts", "notify-test"];
6651
+ const commandParts = ["rig-server", "notify-test"];
6652
6652
  if (eventResult.value) {
6653
6653
  commandParts.push("--event", eventResult.value);
6654
6654
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h-rig/cli",
3
- "version": "0.0.6-alpha.5",
3
+ "version": "0.0.6-alpha.6",
4
4
  "type": "module",
5
5
  "description": "Rig package",
6
6
  "license": "UNLICENSED",
@@ -23,9 +23,10 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@clack/prompts": "^1.2.0",
26
- "@rig/core": "npm:@h-rig/core@0.0.6-alpha.5",
27
- "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.5",
28
- "@rig/client": "npm:@h-rig/client@0.0.6-alpha.5",
26
+ "@rig/core": "npm:@h-rig/core@0.0.6-alpha.6",
27
+ "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.6",
28
+ "@rig/client": "npm:@h-rig/client@0.0.6-alpha.6",
29
+ "@rig/server": "npm:@h-rig/server@0.0.6-alpha.6",
29
30
  "picocolors": "^1.1.1"
30
31
  }
31
32
  }