@dreamboard-games/cli 0.1.30-alpha.26 → 0.1.30-alpha.27

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 CHANGED
@@ -56,7 +56,7 @@ import {
56
56
  titleFromSlug,
57
57
  toDreamboardApiError,
58
58
  waitForCompiledResultJobSdk
59
- } from "./chunk-26IYAAMB.js";
59
+ } from "./chunk-BOO4OFZR.js";
60
60
  import {
61
61
  applyWorkspaceCodegen,
62
62
  collectLocalFiles,
@@ -94,7 +94,7 @@ import {
94
94
  updateProjectLocalMaintainerRegistry,
95
95
  updateProjectState,
96
96
  writeSnapshot
97
- } from "./chunk-TG6TZMN2.js";
97
+ } from "./chunk-LEUC3W2L.js";
98
98
  import {
99
99
  clearCredentials,
100
100
  getActiveCredentialBackendName,
@@ -5732,11 +5732,11 @@ function resolveRequestedRunner(value) {
5732
5732
  if (value == null || value === "") {
5733
5733
  return void 0;
5734
5734
  }
5735
- if (value === "reducer" || value === "remote" || value === "browser") {
5735
+ if (value === "reducer" || value === "remote") {
5736
5736
  return value;
5737
5737
  }
5738
5738
  throw new Error(
5739
- `Unsupported test runner '${String(value)}'. Expected one of reducer, remote, browser.`
5739
+ `Unsupported test runner '${String(value)}'. Expected one of reducer, remote.`
5740
5740
  );
5741
5741
  }
5742
5742
  function resolveTestCommandPlan(args) {
@@ -5746,14 +5746,14 @@ function resolveTestCommandPlan(args) {
5746
5746
  if (runner === "remote" && !commit) {
5747
5747
  throw new Error("dreamboard test --runner remote requires --commit <rev>.");
5748
5748
  }
5749
- if (commit && runner !== "remote" && runner !== "browser") {
5749
+ if (commit && runner !== "remote") {
5750
5750
  throw new Error(
5751
- "dreamboard test --commit is only valid with --runner remote or --runner browser."
5751
+ "dreamboard test --commit is only valid with --runner remote."
5752
5752
  );
5753
5753
  }
5754
5754
  if (updateSnapshots && (runner === "remote" || commit)) {
5755
5755
  throw new Error(
5756
- "dreamboard test --update-snapshots is only valid for current-worktree reducer or browser tests."
5756
+ "dreamboard test --update-snapshots is only valid for current-worktree reducer tests."
5757
5757
  );
5758
5758
  }
5759
5759
  return {
@@ -5813,7 +5813,7 @@ async function resolveRemoteCommitCompiledResult(options) {
5813
5813
  return compiledResult;
5814
5814
  }
5815
5815
  async function resolveReducerNativeRuntimeIdentity(options) {
5816
- if (options.useRemoteRuntime || options.runner === "remote" || options.runner === "browser") {
5816
+ if (options.useRemoteRuntime || options.runner === "remote") {
5817
5817
  const latestCompiledResult = await resolveLatestCompiledResult(
5818
5818
  options.projectRoot,
5819
5819
  options.projectConfig
@@ -5883,7 +5883,7 @@ async function runTestCommand(args, deps = {}) {
5883
5883
  return;
5884
5884
  }
5885
5885
  const { projectRoot, projectConfig, config } = await (deps.resolveProjectContext ?? resolveProjectContext)(parsedFlags, {
5886
- requireAuth: useRemoteRuntime || plan.runner === "remote" || plan.runner === "browser"
5886
+ requireAuth: useRemoteRuntime || plan.runner === "remote"
5887
5887
  });
5888
5888
  await (deps.assertPortableDependencies ?? assertReleaseEnvironmentPortableDependencies)({
5889
5889
  projectRoot,
@@ -5951,8 +5951,8 @@ var runCommand3 = defineCommand({
5951
5951
  },
5952
5952
  runner: {
5953
5953
  type: "string",
5954
- valueHint: "reducer|remote|browser",
5955
- description: "Scenario runner: reducer (in-process, default), remote (live sessions against the configured backend), or browser (local web stack)."
5954
+ valueHint: "reducer|remote",
5955
+ description: "Scenario runner: reducer (in-process, default) or remote (live sessions against the configured backend)."
5956
5956
  },
5957
5957
  commit: {
5958
5958
  type: "string",
@@ -6327,7 +6327,7 @@ function runDreamboardCli(internalSubCommands = {}) {
6327
6327
  const main = defineCommand({
6328
6328
  meta: {
6329
6329
  name: "dreamboard",
6330
- version: "0.1.30-alpha.26",
6330
+ version: "0.1.30-alpha.27",
6331
6331
  description: "Dreamboard CLI \u2014 game development platform"
6332
6332
  },
6333
6333
  subCommands