qlm-measure 0.2.7 → 0.2.8
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 +4 -0
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,10 @@ pip install qlm-measure
|
|
|
24
24
|
npm install qlm-measure
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
## Produce a record from your own tool
|
|
28
|
+
|
|
29
|
+
See **[docs/recorder-quickstart.md](docs/recorder-quickstart.md)** — ten lines, no QLM account, no network.
|
|
30
|
+
|
|
27
31
|
## Verify a record
|
|
28
32
|
|
|
29
33
|
```bash
|
package/dist/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ import { createHash } from "crypto";
|
|
|
8
8
|
import { verifyRecord } from "./verifier/verify-record.js";
|
|
9
9
|
import { verifyRecordV03 } from "./verifier-v03.js";
|
|
10
10
|
import { CATALOG, SHIPPED_CHECKS, SHIPPED_CHECKS_V03, PLANNED_CHECKS, CATALOG_BY_ID, CATEGORIES, CATEGORIES_V03 } from "./checks.js";
|
|
11
|
-
const VERSION = "0.2.
|
|
11
|
+
const VERSION = "0.2.8";
|
|
12
12
|
function loadRecords(path) {
|
|
13
13
|
let raw;
|
|
14
14
|
if (path === "-") {
|