findskill 0.1.0 → 0.1.1
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/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11290,9 +11290,11 @@ function formatSkillRow(skill) {
|
|
|
11290
11290
|
const installs = import_picocolors.default.green(`↓ ${skill.installs}`);
|
|
11291
11291
|
const name = import_picocolors.default.bold(import_picocolors.default.cyan(skill.name));
|
|
11292
11292
|
const tags = skill.tags.map((t4) => import_picocolors.default.dim(`#${t4}`)).join(" ");
|
|
11293
|
+
const link = import_picocolors.default.dim(import_picocolors.default.underline(skill.github_url));
|
|
11293
11294
|
return `${name} ${stars} ${installs}
|
|
11294
11295
|
${import_picocolors.default.dim(skill.description)}
|
|
11295
|
-
${tags}
|
|
11296
|
+
${tags}
|
|
11297
|
+
${link}`;
|
|
11296
11298
|
}
|
|
11297
11299
|
function formatSkillDetail(skill) {
|
|
11298
11300
|
const lines = [
|