bunli 0.7.0 → 0.8.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 +10 -0
- package/dist/cli.js +71 -71
- package/dist/commands/dev.d.ts +1 -1
- package/dist/commands/release.d.ts +2 -2
- package/dist/commands/test.d.ts +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -258,10 +258,20 @@ export default defineConfig({
|
|
|
258
258
|
dev: {
|
|
259
259
|
watch: true,
|
|
260
260
|
inspect: false
|
|
261
|
+
},
|
|
262
|
+
|
|
263
|
+
tui: {
|
|
264
|
+
renderer: {
|
|
265
|
+
bufferMode: 'alternate' // or 'standard'
|
|
266
|
+
}
|
|
261
267
|
}
|
|
262
268
|
})
|
|
263
269
|
```
|
|
264
270
|
|
|
271
|
+
Default `tui.renderer.bufferMode` policy:
|
|
272
|
+
- `'standard'` by default
|
|
273
|
+
- set `'alternate'` explicitly for fullscreen/blocking terminal flows
|
|
274
|
+
|
|
265
275
|
### Build Behavior
|
|
266
276
|
|
|
267
277
|
The build system works as follows:
|