@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.
- package/README.md +5 -5
- package/hipp.js +2 -1
- 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.
|
|
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.
|
|
248
|
-
"revision": "
|
|
249
|
-
"hash": "
|
|
250
|
-
"signature": "
|
|
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
|
-
|
|
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(' | ')}`);
|