@pellux/goodvibes-tui 0.19.63 → 0.19.64
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 +19 -0
- package/README.md +1 -1
- package/package.json +2 -1
- package/src/cli/help.ts +0 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,25 @@ All notable changes to GoodVibes TUI.
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
+
## [0.19.64] — 2026-05-05
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Fixed the packaged platform TUI binaries so the `sqlite-vec` JavaScript wrapper is bundled into the executable instead of being resolved from `/$bunfs/root` at startup.
|
|
15
|
+
- Kept only the platform-native sqlite-vec addon external and shipped beside the binary under `dist/lib/sqlite-vec-<platform>-<arch>/`.
|
|
16
|
+
- Fixed `goodvibes --version` and `goodvibes-daemon --version` for installed wrappers so they report the GoodVibes package version instead of the consuming project's `npm_package_version`.
|
|
17
|
+
- Added release smoke coverage that runs the compiled TUI binary and verifies installed `goodvibes` and `goodvibes-daemon` wrappers so startup/version failures block publication.
|
|
18
|
+
|
|
19
|
+
### Verified
|
|
20
|
+
- `bun run scripts/build.ts --target linux-x64`
|
|
21
|
+
- `bun run smoke:tui`
|
|
22
|
+
- `bun test src/test/cli/help.test.ts src/test/cli/package-verification.test.ts --timeout 30000`
|
|
23
|
+
- `bun run tsc --noEmit --pretty false`
|
|
24
|
+
- `bun run smoke:daemon`
|
|
25
|
+
- local `npm pack` install smoke with `GOODVIBES_ASSET_SOURCE_DIR=dist`
|
|
26
|
+
- `/home/buzzkill/Projects/goodvibes-tui/dist/goodvibes-linux-x64 --version` from `/home/buzzkill/Projects/ttest1`
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
11
30
|
## [0.19.63] — 2026-05-05
|
|
12
31
|
|
|
13
32
|
### Changed
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://github.com/mgd34msu/goodvibes-tui)
|
|
6
6
|
|
|
7
7
|
A terminal-native AI coding, operations, automation, knowledge, and integration console with a typed runtime, omnichannel surfaces, structured memory/knowledge, and a raw ANSI renderer.
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.64",
|
|
4
4
|
"description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/main.ts",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"build:daemon:macos-x64": "bun run scripts/build.ts --target daemon-macos-x64",
|
|
39
39
|
"build:daemon:macos-arm64": "bun run scripts/build.ts --target daemon-macos-arm64",
|
|
40
40
|
"smoke:daemon": "bun run scripts/post-build-smoke.ts",
|
|
41
|
+
"smoke:tui": "bun run scripts/smoke-tui-binary.ts",
|
|
41
42
|
"build:windows": "bun build src/main.ts --compile --target=bun-windows-x64 --outfile dist/goodvibes-windows.exe",
|
|
42
43
|
"build:all-shell": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:macos-x64 && bun run build:macos-arm64 && bun run build:windows",
|
|
43
44
|
"test": "bun run scripts/run-tests.ts",
|
package/src/cli/help.ts
CHANGED
|
@@ -16,7 +16,6 @@ function readJsonVersion(path: string): string | null {
|
|
|
16
16
|
export function getPackageVersion(): string {
|
|
17
17
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
18
18
|
return readJsonVersion(join(here, '..', '..', 'package.json'))
|
|
19
|
-
?? process.env.npm_package_version
|
|
20
19
|
?? VERSION;
|
|
21
20
|
}
|
|
22
21
|
|
package/src/version.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { join } from 'node:path';
|
|
|
6
6
|
// The prebuild script updates the fallback value before compilation.
|
|
7
7
|
// Uses import.meta.dir (Bun) to locate package.json relative to this file,
|
|
8
8
|
// which is correct regardless of the process working directory.
|
|
9
|
-
let _version = '0.19.
|
|
9
|
+
let _version = '0.19.64';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|