create-backlist 10.0.8 โ 10.1.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/bin/index.js +0 -3
- package/package.json +1 -1
- package/src/qa/qa-engine.js +1732 -739
package/bin/index.js
CHANGED
|
@@ -1159,9 +1159,6 @@ async function main() {
|
|
|
1159
1159
|
{ value: 'pro', label: '๐ง Pro AI Mode', hint: 'Llama-4 ยท Schema + Auth generation' },
|
|
1160
1160
|
{ value: 'qa-url', label: '๐ URL QA Scan', hint: 'Real browser + HTTP security + SEO' },
|
|
1161
1161
|
{ value: 'qa-manual', label: '๐งช Manual QA', hint: 'Interactive test cases' },
|
|
1162
|
-
{ value: 'qa-auto', label: '๐ค Automated QA', hint: 'Full test suite' },
|
|
1163
|
-
{ value: 'qa-live', label: 'โก Live QA Monitor', hint: 'Reruns every 30s' },
|
|
1164
|
-
{ value: 'qa-post', label: '๐ฌ Post-Gen Validation', hint: 'Validate generated project' },
|
|
1165
1162
|
{ value: 'qa-history', label: '๐ QA History', hint: 'Browse past runs' },
|
|
1166
1163
|
{ value: 'config', label: 'โ๏ธ Config', hint: 'API keys & sessions' },
|
|
1167
1164
|
...(plugins.length > 0 ? [{ value: 'plugins', label: '๐ Plugins', hint: `${plugins.length} installed` }] : []),
|
package/package.json
CHANGED