@garaje/base 0.1.3 → 0.1.4

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": "@garaje/base",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3,7 +3,7 @@
3
3
  - The repo root is `/workspace`, bind-mounted from the host. Edits here are
4
4
  immediately visible on the host and in sibling containers.
5
5
  - This is a **garaje**: it parks codebases into `bays/<name>/` and runs them.
6
- Parked code is materialized by `bin/garaje sync` from `garaje.yaml`; each bay
6
+ Parked code is materialized by `garaje sync` from `garaje.yaml`; each bay
7
7
  is its own git checkout, gitignored from this repo.
8
8
  - A bay's `recipe.yaml` declares how it runs (toolchain, app processes,
9
9
  backing services, env, secrets). `garaje park` turns recipes into the
@@ -16,7 +16,7 @@
16
16
  - `packages/` holds the garaje **framework** being extracted from this repo:
17
17
  `packages/cli` (the TypeScript `garaje` CLI) and `packages/base` (the
18
18
  `@garaje/base` pi package), as npm workspaces. The recipe→compose codegen now
19
- lives here; `bin/garaje park` runs it.
19
+ lives here; `garaje park` runs it.
20
20
  - `scratch/` is a host-shared dropbox for screenshots, logs, and paste-ins.
21
21
  Use it for ephemeral artifacts; it is gitignored.
22
22
  - `sessions/` holds pi session transcripts, bind-mounted from the host and
@@ -29,6 +29,10 @@ If the bay isn't in `garaje.yaml` yet, add it under `bays:`:
29
29
  ref: main
30
30
  ```
31
31
 
32
+ A fresh manifest reads `bays: []`. That is an empty *flow* sequence — list
33
+ items cannot be appended beneath it. Replace it with a bare `bays:` first, or
34
+ `garaje sync` will reject the file as malformed YAML.
35
+
32
36
  Then materialize it (git credentials are already forwarded in-container):
33
37
 
34
38
  ```bash