adhdev 0.9.82-rc.12 → 0.9.82-rc.14
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/cli/index.js +6 -15
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +6 -15
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cli/index.js
CHANGED
|
@@ -48129,14 +48129,8 @@ var init_router = __esm({
|
|
|
48129
48129
|
case "get_mesh": {
|
|
48130
48130
|
const meshId = typeof args?.meshId === "string" ? args.meshId.trim() : "";
|
|
48131
48131
|
if (!meshId) return { success: false, error: "meshId required" };
|
|
48132
|
-
|
|
48133
|
-
|
|
48134
|
-
const mesh = getMesh3(meshId);
|
|
48135
|
-
if (mesh) return { success: true, mesh };
|
|
48136
|
-
} catch {
|
|
48137
|
-
}
|
|
48138
|
-
const cached2 = this.inlineMeshCache.get(meshId);
|
|
48139
|
-
if (cached2) return { success: true, mesh: cached2 };
|
|
48132
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
48133
|
+
if (meshRecord?.mesh) return { success: true, mesh: meshRecord.mesh };
|
|
48140
48134
|
return { success: false, error: "Mesh not found" };
|
|
48141
48135
|
}
|
|
48142
48136
|
case "create_mesh": {
|
|
@@ -57908,7 +57902,7 @@ var require_yoctocolors_cjs = __commonJS({
|
|
|
57908
57902
|
}
|
|
57909
57903
|
});
|
|
57910
57904
|
|
|
57911
|
-
// ../../node_modules/@inquirer/figures/dist/esm/index.
|
|
57905
|
+
// ../../node_modules/@inquirer/figures/dist/esm/index.mjs
|
|
57912
57906
|
function isUnicodeSupported() {
|
|
57913
57907
|
if (import_node_process3.default.platform !== "win32") {
|
|
57914
57908
|
return import_node_process3.default.env["TERM"] !== "linux";
|
|
@@ -57920,7 +57914,7 @@ function isUnicodeSupported() {
|
|
|
57920
57914
|
}
|
|
57921
57915
|
var import_node_process3, common2, specialMainSymbols, specialFallbackSymbols, mainSymbols, fallbackSymbols, shouldUseMain, figures, esm_default, replacements;
|
|
57922
57916
|
var init_esm3 = __esm({
|
|
57923
|
-
"../../node_modules/@inquirer/figures/dist/esm/index.
|
|
57917
|
+
"../../node_modules/@inquirer/figures/dist/esm/index.mjs"() {
|
|
57924
57918
|
"use strict";
|
|
57925
57919
|
import_node_process3 = __toESM(require("process"), 1);
|
|
57926
57920
|
common2 = {
|
|
@@ -58191,10 +58185,7 @@ var init_esm3 = __esm({
|
|
|
58191
58185
|
oneNinth: "1/9",
|
|
58192
58186
|
oneTenth: "1/10"
|
|
58193
58187
|
};
|
|
58194
|
-
mainSymbols = {
|
|
58195
|
-
...common2,
|
|
58196
|
-
...specialMainSymbols
|
|
58197
|
-
};
|
|
58188
|
+
mainSymbols = { ...common2, ...specialMainSymbols };
|
|
58198
58189
|
fallbackSymbols = {
|
|
58199
58190
|
...common2,
|
|
58200
58191
|
...specialFallbackSymbols
|
|
@@ -98099,7 +98090,7 @@ var init_adhdev_daemon = __esm({
|
|
|
98099
98090
|
init_version();
|
|
98100
98091
|
init_src();
|
|
98101
98092
|
init_runtime_defaults();
|
|
98102
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
98093
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.14" });
|
|
98103
98094
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
98104
98095
|
localHttpServer = null;
|
|
98105
98096
|
localWss = null;
|