@appchy/jarvis 0.1.56 → 0.1.58
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.js +230 -100
- package/dist/bin.js.map +1 -1
- package/dist/data/backends.mjs +1 -1
- package/dist/ui/app.js +30 -30
- package/package.json +4 -4
package/dist/data/backends.mjs
CHANGED
|
@@ -302,7 +302,7 @@ async function extract(bin, root, ctx, graphRel, options = {}) {
|
|
|
302
302
|
} catch (err) {
|
|
303
303
|
const code = err.code;
|
|
304
304
|
if (code === "ENOENT") {
|
|
305
|
-
const message = `graphify binary "${bin}" not found \u2014 install it with \`uv tool install graphifyy
|
|
305
|
+
const message = `graphify binary "${bin}" not found \u2014 install it with \`uv tool install graphifyy\` (uv itself: https://docs.astral.sh/uv/), or set { extract: false } to present the existing graph.`;
|
|
306
306
|
if (options.missing === "error") ctx.panic(message);
|
|
307
307
|
ctx.report({
|
|
308
308
|
severity: options.missing ?? "warn",
|