auq-mcp-server 2.7.2 → 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/dist/bin/tui-app.js +3 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/bin/tui-app.js
CHANGED
|
@@ -594,8 +594,9 @@ export const runTui = async (config) => {
|
|
|
594
594
|
await runOpenTui(mergedConfig);
|
|
595
595
|
}
|
|
596
596
|
catch (err) {
|
|
597
|
-
console.
|
|
598
|
-
|
|
597
|
+
console.error(`❌ OpenTUI failed to initialize: ${err instanceof Error ? err.message : String(err)}`);
|
|
598
|
+
console.error(`\n To use the legacy ink renderer, set AUQ_RENDERER=ink or add "renderer": "ink" to your .auqrc.json\n`);
|
|
599
|
+
process.exit(1);
|
|
599
600
|
}
|
|
600
601
|
}
|
|
601
602
|
else {
|
package/dist/package.json
CHANGED