@dreamboard-games/cli 0.1.30-alpha.25 → 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/internal.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  resolveConfig,
11
11
  resolveProjectContext,
12
12
  shortHash
13
- } from "./chunk-3TMWDJQR.js";
13
+ } from "./chunk-BOO4OFZR.js";
14
14
  import {
15
15
  applyWorkspaceCodegen,
16
16
  loadManifest,
@@ -19,7 +19,7 @@ import {
19
19
  setLatestCompileAttempt,
20
20
  updateProjectState,
21
21
  writeSnapshot
22
- } from "./chunk-ZFVLYMKV.js";
22
+ } from "./chunk-LEUC3W2L.js";
23
23
  import {
24
24
  getStoredSession,
25
25
  loadGlobalConfig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreamboard-games/cli",
3
- "version": "0.1.30-alpha.25",
3
+ "version": "0.1.30-alpha.27",
4
4
  "description": "Design board games with AI and turn ideas into playable digital prototypes.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4,7 +4,7 @@
4
4
  "packages": {
5
5
  "cli": {
6
6
  "name": "@dreamboard-games/cli",
7
- "version": "0.1.30-alpha.25"
7
+ "version": "0.1.30-alpha.27"
8
8
  },
9
9
  "sdk": {
10
10
  "name": "@dreamboard-games/sdk",
@@ -34,5 +34,5 @@
34
34
  "portable": true
35
35
  },
36
36
  "packageManager": "pnpm@10.4.1",
37
- "releaseSetId": "sha256:bcc85113593f6e35c9c9ba185dcf211b81a683b39519e7b9c832bb7a4453a9ee"
37
+ "releaseSetId": "sha256:34f19ff38d2c6c1cd27169f778f268e881061dd61a2fdedc99c7ab70ab866474"
38
38
  }
@@ -69,7 +69,7 @@ Use the commands for different kinds of state:
69
69
  - `dreamboard verify --commit <rev>`
70
70
  Verify one exact commit from a detached worktree.
71
71
  - `dreamboard test`
72
- Regenerate derived test artifacts as needed and run reducer, remote, or browser tests.
72
+ Regenerate derived test artifacts as needed and run reducer or remote tests.
73
73
  - `dreamboard dev [--from-scenario <id>]`
74
74
  Start the local dev host for browser validation.
75
75
 
@@ -19,7 +19,7 @@ Use the CLI for:
19
19
  - verifying an exact commit from a detached worktree
20
20
  - building, previewing, and publishing pushed commits
21
21
  - starting the local dev host
22
- - running reducer, remote, or browser tests
22
+ - running reducer and remote tests
23
23
 
24
24
  ## Install targets
25
25
 
@@ -72,7 +72,7 @@ remote.
72
72
 
73
73
  | Command | Use it for |
74
74
  | --- | --- |
75
- | `dreamboard test` | Run reducer, remote, or browser tests |
75
+ | `dreamboard test` | Run reducer or remote tests |
76
76
  | `dreamboard dev [--from-scenario <id>]` | Start the local project dev host |
77
77
  | `dreamboard build --commit <rev>` | Create a server build for a pushed commit |
78
78
  | `dreamboard preview --commit <rev>` | Create a preview for a pushed commit |
@@ -93,7 +93,6 @@ Use the scaffolded reducer-native test workspace for repeatable game assertions.
93
93
  ```bash
94
94
  dreamboard test
95
95
  dreamboard test --scenario test/scenarios/player-two-wins.scenario.ts
96
- dreamboard test --runner browser
97
96
  dreamboard test --runner remote --commit HEAD
98
97
  ```
99
98