@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.
Files changed (2) hide show
  1. package/dist/main.js +2 -1
  2. 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
- console.log(`${idx + 1}. ${pkg.name} (v${pkg.version}) - Stars: ${star}${pkg.description ? ` - ${pkg.description}` : ""}`);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.603",
3
+ "version": "0.1.604",
4
4
  "main": "dist/main.js",
5
5
  "devDependencies": {
6
6
  "@babel/standalone": "^7.26.9",