@tscircuit/cli 0.1.603 → 0.1.604
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/main.js +2 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -83103,7 +83103,8 @@ var registerSearch = (program3) => {
|
|
|
83103
83103
|
console.log(kleur_default.bold().underline(`Found ${results.packages.length} package(s) in the tscircuit registry:`));
|
|
83104
83104
|
results.packages.forEach((pkg, idx) => {
|
|
83105
83105
|
const star = pkg.star_count ?? 0;
|
|
83106
|
-
|
|
83106
|
+
const versionStr = pkg.version ? ` (v${pkg.version})` : "";
|
|
83107
|
+
console.log(`${idx + 1}. ${pkg.name}${versionStr} - Stars: ${star}${pkg.description ? ` - ${pkg.description}` : ""}`);
|
|
83107
83108
|
});
|
|
83108
83109
|
}
|
|
83109
83110
|
if (!onlyKicad && jlcResults.length) {
|