fluncle 0.187.0 → 0.189.0

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/bin/fluncle.mjs +4 -3
  2. package/package.json +1 -1
package/bin/fluncle.mjs CHANGED
@@ -561,7 +561,7 @@ function parseVersion(version) {
561
561
  var currentVersion;
562
562
  var init_version = __esm(() => {
563
563
  init_output();
564
- currentVersion = "0.187.0".trim() ? "0.187.0".trim() : "0.1.0";
564
+ currentVersion = "0.189.0".trim() ? "0.189.0".trim() : "0.1.0";
565
565
  });
566
566
 
567
567
  // src/update-notifier.ts
@@ -1218,7 +1218,8 @@ __export(exports_search, {
1218
1218
  });
1219
1219
  function entityLine(entity) {
1220
1220
  const kind = `${entity.kind[0]?.toUpperCase() ?? ""}${entity.kind.slice(1)}`;
1221
- return `${kind} ${entity.name} ${webBaseUrl}/${entity.kind}/${entity.slug}`;
1221
+ const path2 = entity.url ?? `/${entity.kind}/${entity.slug}`;
1222
+ return `${kind} ${entity.name} ${webBaseUrl}${path2}`;
1222
1223
  }
1223
1224
  function trackTable(hits) {
1224
1225
  const coordWidth = hits.reduce((width, hit) => {
@@ -2442,7 +2443,7 @@ function parseVersion2(version) {
2442
2443
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2443
2444
  var init_version2 = __esm(() => {
2444
2445
  init_output();
2445
- currentVersion2 = "0.187.0".trim() ? "0.187.0".trim() : "0.1.0";
2446
+ currentVersion2 = "0.189.0".trim() ? "0.189.0".trim() : "0.1.0";
2446
2447
  });
2447
2448
 
2448
2449
  // ../../packages/registry/src/index.ts
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  "url": "git+https://github.com/mauricekleine/fluncle.git"
32
32
  },
33
33
  "type": "module",
34
- "version": "0.187.0"
34
+ "version": "0.189.0"
35
35
  }