@attest-it/cli 0.2.0 → 0.4.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.
- package/README.md +8 -4
- package/dist/bin/attest-it.js +2251 -249
- package/dist/bin/attest-it.js.map +1 -1
- package/dist/index.cjs +2246 -246
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2251 -249
- package/dist/index.js.map +1 -1
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -94,10 +94,14 @@ All commands support these global options:
|
|
|
94
94
|
|
|
95
95
|
## Exit Codes
|
|
96
96
|
|
|
97
|
-
| Code | Meaning
|
|
98
|
-
| ---- |
|
|
99
|
-
| 0 |
|
|
100
|
-
| 1 |
|
|
97
|
+
| Code | Constant | Meaning |
|
|
98
|
+
| ---- | ------------ | ----------------------------------- |
|
|
99
|
+
| 0 | SUCCESS | Operation completed successfully |
|
|
100
|
+
| 1 | FAILURE | Tests failed or attestation invalid |
|
|
101
|
+
| 2 | NO_WORK | Nothing needed attestation |
|
|
102
|
+
| 3 | CONFIG_ERROR | Configuration or validation error |
|
|
103
|
+
| 4 | CANCELLED | User cancelled the operation |
|
|
104
|
+
| 5 | MISSING_KEY | Missing required key file |
|
|
101
105
|
|
|
102
106
|
## Programmatic Usage
|
|
103
107
|
|