gnosys 5.8.2 → 5.8.4
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.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/lib/config.d.ts +8 -0
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +14 -4
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/idFormat.d.ts +21 -0
- package/dist/lib/idFormat.d.ts.map +1 -1
- package/dist/lib/idFormat.js +48 -0
- package/dist/lib/idFormat.js.map +1 -1
- package/dist/lib/projectIdentity.d.ts.map +1 -1
- package/dist/lib/projectIdentity.js +42 -9
- package/dist/lib/projectIdentity.js.map +1 -1
- package/dist/lib/setup/sections/preferences.d.ts +21 -12
- package/dist/lib/setup/sections/preferences.d.ts.map +1 -1
- package/dist/lib/setup/sections/preferences.js +139 -77
- package/dist/lib/setup/sections/preferences.js.map +1 -1
- package/dist/lib/setup/summary.d.ts.map +1 -1
- package/dist/lib/setup/summary.js +8 -6
- package/dist/lib/setup/summary.js.map +1 -1
- package/dist/lib/setup.d.ts +11 -0
- package/dist/lib/setup.d.ts.map +1 -1
- package/dist/lib/setup.js +32 -11
- package/dist/lib/setup.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -286,7 +286,7 @@ program
|
|
|
286
286
|
});
|
|
287
287
|
return;
|
|
288
288
|
}
|
|
289
|
-
const { formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
289
|
+
const { formatMemoryIdHyperlink: formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
290
290
|
const idFormat = parseIdFormat(opts.idFormat);
|
|
291
291
|
const projectNames = buildProjectNameLookup(centralDb);
|
|
292
292
|
outputResult(!!opts.json, { query, count: results.length, results }, () => {
|
|
@@ -378,7 +378,7 @@ program
|
|
|
378
378
|
});
|
|
379
379
|
return;
|
|
380
380
|
}
|
|
381
|
-
const { formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
381
|
+
const { formatMemoryIdHyperlink: formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
382
382
|
const idFormat = parseIdFormat(opts.idFormat);
|
|
383
383
|
const projectNames = buildProjectNameLookup(centralDb);
|
|
384
384
|
outputResult(!!opts.json, { query, count: results.length, results }, () => {
|
|
@@ -443,7 +443,7 @@ program
|
|
|
443
443
|
}
|
|
444
444
|
});
|
|
445
445
|
}
|
|
446
|
-
const { formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
446
|
+
const { formatMemoryIdHyperlink: formatMemoryId, buildProjectNameLookup, parseIdFormat } = await import("./lib/idFormat.js");
|
|
447
447
|
const idFormat = parseIdFormat(opts.idFormat);
|
|
448
448
|
const projectNames = buildProjectNameLookup(centralDb);
|
|
449
449
|
outputResult(!!opts.json, {
|