@dk/hipp 0.1.23 → 0.1.24

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 (3) hide show
  1. package/README.md +5 -5
  2. package/hipp.js +2 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -238,16 +238,16 @@ PERFORMANCE OF THIS SOFTWARE.
238
238
  Verify this package with [@dk/hipp](https://www.npmjs.com/package/@dk/hipp):
239
239
 
240
240
  ```bash
241
- npx @dk/hipp verify @dk/hipp@0.1.23
241
+ npx @dk/hipp verify @dk/hipp@0.1.24
242
242
  ```
243
243
 
244
244
  ```json
245
245
  {
246
246
  "origin": "git@github.com:dmytri/hipp.git",
247
- "tag": "v0.1.23",
248
- "revision": "5f94c47e1a6858a6e74ae10c0727cd481e22fb04",
249
- "hash": "2945f93a1fb565f0806a4f924cfeb8509e5dd9714f814eaa22e763ac8d3d3935",
250
- "signature": "KfyYgmbwMWesEXaTxRydY+9P96rjfCLU+H9B3bVmJ4to3oGsioYeVLDG2B4GYiJRRh49bSwh8MnRoHfpF/s8DA==",
247
+ "tag": "v0.1.24",
248
+ "revision": "5e933090af3b384fe51e114207ea240f0124d0a1",
249
+ "hash": "588c38d438bdc3aa7e8ffa9f5805b4542e65789daa113d8c7f78c3ecc31884fc",
250
+ "signature": "LGsyEmAATa79Z8TbPl5xjGMUBTJO7A1jpq+2/XvO8M6u/RNdUGntfb03T8jjc/l9K0XxNCaVmC/pYIZhBB8rDQ==",
251
251
  "name": "Dmytri Kleiner",
252
252
  "email": "dev@dmytri.to",
253
253
  "npm": "11.12.1",
package/hipp.js CHANGED
@@ -575,7 +575,8 @@ async function runVerify(packageSpec) {
575
575
  log.info(`📍 Tag: ${tag}`);
576
576
  if (npmVer || nodeVer || hippVer) {
577
577
  const parts = [];
578
- if (hippVer) parts.push(`hipp: ${hippVer}`);
578
+ const displayHipp = hippVer === '0.0.0' ? tagVersion : hippVer;
579
+ if (hippVer) parts.push(`hipp: ${displayHipp}`);
579
580
  if (npmVer) parts.push(`npm: ${npmVer}`);
580
581
  if (nodeVer) parts.push(`node: ${nodeVer}`);
581
582
  log.info(`â„šī¸ ${parts.join(' | ')}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dk/hipp",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "High Integrity Package Publisher",
5
5
  "main": "hipp.js",
6
6
  "bin": {