@toist/in 0.2.2 → 0.5.0

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/CHANGELOG.md CHANGED
@@ -2,10 +2,26 @@
2
2
 
3
3
  All notable changes to `@toist/in` are recorded here.
4
4
 
5
+ ## 0.5.0 — 2026-05-05
6
+
7
+ Lockstep version bump. Scaffold template pins `@toist/aja` and `@toist/spec` to `^0.5.0`.
8
+
9
+ ## 0.4.0 — 2026-05-05
10
+
11
+ Lockstep version bump alongside `@toist/aja@0.4.0` (rename from `@toist/run`).
12
+ Scaffold template's `_package.json` now pins `@toist/aja` and `@toist/spec`
13
+ to `^0.4.0`.
14
+
15
+ ## 0.3.0 — 2026-05-05
16
+
17
+ Lockstep version bump alongside the new `@toist/up` package. The scaffold
18
+ template's `_package.json` now pins `@toist/aja` and `@toist/spec` to
19
+ `^0.3.0`. README mentions `bunx @toist/up` as the upgrade verb.
20
+
5
21
  ## 0.2.2 — 2026-05-05
6
22
 
7
- Lockstep version bump alongside `@toist/run@0.2.2` (UI MIME-type fix).
8
- Scaffold template's `_package.json` now pins `@toist/run` and `@toist/spec`
23
+ Lockstep version bump alongside `@toist/aja@0.2.2` (UI MIME-type fix).
24
+ Scaffold template's `_package.json` now pins `@toist/aja` and `@toist/spec`
9
25
  to `^0.2.2` so freshly scaffolded instances pick up the fix.
10
26
 
11
27
  ## 0.2.1 — 2026-05-05
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toist/in",
3
- "version": "0.2.2",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new toist instance: bunx @toist/in <path>",
6
6
  "main": "./src/index.ts",
@@ -8,5 +8,9 @@
8
8
  "bin": {
9
9
  "toist-in": "./src/index.ts"
10
10
  },
11
- "files": ["src/", "templates/", "CHANGELOG.md"]
11
+ "files": [
12
+ "src/",
13
+ "templates/",
14
+ "CHANGELOG.md"
15
+ ]
12
16
  }
@@ -11,12 +11,21 @@ Open `http://localhost:3000` to use the UI.
11
11
 
12
12
  ## Layout
13
13
 
14
- - `start.ts` — bootstrap; calls `startRunner` from `@toist/run`
14
+ - `start.ts` — bootstrap; calls `startRunner` from `@toist/aja`
15
15
  - `kinds/custom.ts` — register your domain-specific kinds here
16
16
  - `pipelines/*.yaml` — pipeline definitions (per pipeline-spec)
17
17
  - `resources/*.yaml` — resource definitions (per resource-spec)
18
18
  - `data/` — runtime SQLite databases (gitignored)
19
19
 
20
+ ## Upgrading
21
+
22
+ ```sh
23
+ bunx @toist/up
24
+ ```
25
+
26
+ Auto-detects every `@toist/*` dep in this directory's `package.json`
27
+ and bumps them to the latest published version.
28
+
20
29
  ## More
21
30
 
22
31
  Full quickstart and docs: https://toist.in
@@ -4,10 +4,10 @@
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "start": "bun start.ts",
7
- "dev": "bun --watch start.ts"
7
+ "dev": "bun --watch start.ts"
8
8
  },
9
9
  "dependencies": {
10
- "@toist/run": "^0.2.2",
11
- "@toist/spec": "^0.2.2"
10
+ "@toist/aja": "^0.5.0",
11
+ "@toist/spec": "^0.5.0"
12
12
  }
13
13
  }
@@ -1,6 +1,6 @@
1
1
  // 2121 toist — register your domain-specific kinds here.
2
2
  //
3
- // Each export should be a NodeKind<P, I>. See the @toist/run built-ins for
3
+ // Each export should be a NodeKind<P, I>. See the @toist/aja built-ins for
4
4
  // reference shapes, and pipeline-spec / kind-spec at https://toist.in for
5
5
  // the full contract.
6
6
  //
@@ -1,10 +1,10 @@
1
1
  // 2121 toist instance bootstrap.
2
2
  // See https://toist.in for the full quickstart.
3
3
 
4
- import { startRunner } from "@toist/run"
4
+ import { startRunner } from "@toist/aja"
5
5
 
6
6
  // Uncomment to register domain-specific kinds:
7
- // import { register } from "@toist/run"
7
+ // import { register } from "@toist/aja"
8
8
  // import * as customKinds from "./kinds/custom.ts"
9
9
  // register(...Object.values(customKinds))
10
10