@dexto/image-bundler 1.5.4 → 1.5.6
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +30 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @dexto/image-bundler@1.5.
|
|
2
|
+
> @dexto/image-bundler@1.5.6 build /home/runner/work/dexto/dexto/packages/image-bundler
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/cli.ts, src/index.ts
|
|
@@ -15,6 +15,6 @@
|
|
|
15
15
|
[32mESM[39m [1mdist/index.js.map [22m[32m32.16 KB[39m
|
|
16
16
|
[32mESM[39m ⚡️ Build success in 88ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 9433ms
|
|
19
19
|
[32mDTS[39m [1mdist/cli.d.ts [22m[32m20.00 B[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m965.00 B[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @dexto/image-bundler
|
|
2
2
|
|
|
3
|
+
## 1.5.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 042f4f0: ### CLI Improvements
|
|
8
|
+
- Add `/export` command to export conversations as Markdown or JSON
|
|
9
|
+
- Add `Ctrl+T` toggle for task list visibility during processing
|
|
10
|
+
- Improve task list UI with collapsible view near the processing message
|
|
11
|
+
- Fix race condition causing duplicate rendering (mainly visible with explore tool)
|
|
12
|
+
- Don't truncate `pattern` and `question` args in tool output display
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
- Fix build script to preserve `.dexto` storage (conversations, logs) during clean builds
|
|
16
|
+
- Fix `@dexto/tools-todo` versioning - add to fixed version group in changeset config
|
|
17
|
+
|
|
18
|
+
### Configuration Changes
|
|
19
|
+
- Remove approval timeout defaults - now waits indefinitely (better UX for CLI)
|
|
20
|
+
- Add package versioning guidelines to AGENTS.md
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [042f4f0]
|
|
23
|
+
- @dexto/core@1.5.6
|
|
24
|
+
|
|
25
|
+
## 1.5.5
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [63fa083]
|
|
30
|
+
- Updated dependencies [6df3ca9]
|
|
31
|
+
- @dexto/core@1.5.5
|
|
32
|
+
|
|
3
33
|
## 1.5.4
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dexto/image-bundler",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"description": "Bundler for Dexto base images",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"commander": "^12.0.0",
|
|
19
19
|
"esbuild": "^0.25.0",
|
|
20
20
|
"picocolors": "^1.0.0",
|
|
21
|
-
"@dexto/core": "1.5.
|
|
21
|
+
"@dexto/core": "1.5.6"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^20.11.5",
|