qa360 2.0.2 → 2.0.3

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.
@@ -296,7 +296,7 @@ async function promptForConfig() {
296
296
  name: 'gates',
297
297
  message: 'Select quality gates to enable:',
298
298
  choices: Object.entries(GATE_DESCRIPTIONS).map(([key, desc]) => ({
299
- name: `${key} - ${desc}`,
299
+ name: `${key} - ${desc.short}`,
300
300
  value: key,
301
301
  checked: gates.includes(key),
302
302
  })),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qa360",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "QA360 Proof CLI - Quality as Cryptographic Proof",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",