create-bijou-tui-app 2.1.0 → 3.0.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/README.md +8 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Scaffold a new Bijou TUI app with batteries-included defaults.
|
|
4
4
|
|
|
5
|
+
## What's New in v3.0.0
|
|
6
|
+
|
|
7
|
+
- **Canonical V3 starter** — generated apps target the current `@flyingrobots/bijou-tui` + `@flyingrobots/bijou-tui-app` path instead of an older string-only shell story.
|
|
8
|
+
- **Public API only** — the scaffolded app uses public package APIs so it can serve as a downstream canary for real-world upgrades.
|
|
9
|
+
- **Release-aligned defaults** — the generated project matches the same shell/runtime split described in the root docs and migration guide.
|
|
10
|
+
|
|
5
11
|
## Usage
|
|
6
12
|
|
|
7
13
|
```sh
|
|
@@ -53,3 +59,5 @@ cd "$TARGET"
|
|
|
53
59
|
npm install
|
|
54
60
|
npm run dev
|
|
55
61
|
```
|
|
62
|
+
|
|
63
|
+
For upgrade notes and architecture context, see [`../../docs/MIGRATING_TO_V3.md`](../../docs/MIGRATING_TO_V3.md) and [`../../docs/ARCHITECTURE.md`](../../docs/ARCHITECTURE.md).
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-bijou-tui-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Scaffold a new Bijou TUI app with batteries-included defaults.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"create-bijou-tui-app": "
|
|
7
|
+
"create-bijou-tui-app": "dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|