jd-skills 0.1.3 → 0.1.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.mjs +2 -2
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -3156,7 +3156,7 @@ async function tryBlobInstall(ownerRepo, options = {}) {
|
|
|
3156
3156
|
tree
|
|
3157
3157
|
};
|
|
3158
3158
|
}
|
|
3159
|
-
var version$1 = "0.1.
|
|
3159
|
+
var version$1 = "0.1.4";
|
|
3160
3160
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
3161
3161
|
async function isSourcePrivate(source) {
|
|
3162
3162
|
const ownerRepo = parseOwnerRepo(source);
|
|
@@ -4606,7 +4606,7 @@ function wrapDescriptionPreview(text, maxLines = 4) {
|
|
|
4606
4606
|
if (!truncated && line && lines.length < maxLines) lines.push(` ${DIM$3}${line}${RESET$3}`);
|
|
4607
4607
|
else if (truncated && lines.length > 0) {
|
|
4608
4608
|
const last = lines[lines.length - 1];
|
|
4609
|
-
lines[lines.length - 1] = last.
|
|
4609
|
+
lines[lines.length - 1] = last.endsWith(RESET$3) ? `${last.slice(0, -4)}…${RESET$3}` : `${last}…`;
|
|
4610
4610
|
}
|
|
4611
4611
|
return lines;
|
|
4612
4612
|
}
|