@pellux/goodvibes-tui 0.19.46 → 0.19.47

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
@@ -4,6 +4,14 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.47] — 2026-04-28
8
+
9
+ ### Fixed
10
+ - Moved Bun compile compatibility patching into `prebuild` so manual local compile flows patch SDK 0.26.0 transitive `css-tree` JSON loaders before `bun build --compile`.
11
+ - Patched the remaining `mdn-data` JSON imports used by `css-tree/lib/data.js`, fixing compiled TUI startup from directories outside the source checkout.
12
+
13
+ ---
14
+
7
15
  ## [0.19.46] — 2026-04-28
8
16
 
9
17
  ### Fixed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.46-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.47-blue.svg)](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.46",
3
+ "version": "0.19.47",
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",
package/src/cli/help.ts CHANGED
@@ -1,8 +1,7 @@
1
1
  import { existsSync, readFileSync } from 'node:fs';
2
2
  import { dirname, join } from 'node:path';
3
3
  import { fileURLToPath } from 'node:url';
4
-
5
- const FALLBACK_VERSION = '0.19.24';
4
+ import { VERSION } from '../version.ts';
6
5
 
7
6
  function readJsonVersion(path: string): string | null {
8
7
  try {
@@ -18,7 +17,7 @@ export function getPackageVersion(): string {
18
17
  const here = dirname(fileURLToPath(import.meta.url));
19
18
  return readJsonVersion(join(here, '..', '..', 'package.json'))
20
19
  ?? process.env.npm_package_version
21
- ?? FALLBACK_VERSION;
20
+ ?? VERSION;
22
21
  }
23
22
 
24
23
  export function renderGoodVibesVersion(binary = 'goodvibes'): string {
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.46';
9
+ let _version = '0.19.47';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;