koneck 2.47.2 → 2.47.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.
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koneck",
|
|
3
|
-
"version": "2.47.
|
|
3
|
+
"version": "2.47.3",
|
|
4
4
|
"description": "Kinetically Orchestrated Neural Execution Engine for Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"lint": "tsc --noEmit",
|
|
41
41
|
"test": "vitest run",
|
|
42
42
|
"test:watch": "vitest",
|
|
43
|
-
"prepublishOnly": "npm run build"
|
|
43
|
+
"prepublishOnly": "npm run build",
|
|
44
|
+
"test:failures": "node -e \"const r=require('./.vitest-report.json');const f=r.testResults.flatMap(t=>t.assertionResults.filter(a=>a.status==='failed').map(a=>t.name.split('/').pop()+' :: '+(a.fullName||a.title)+'\\n '+(a.failureMessages||[]).join('\\n ').split('\\n').slice(0,4).join('\\n ')));console.log(f.length?f.join('\\n\\n'):'nothing failed in the last run')\""
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
47
|
"@inquirer/prompts": "^7.1.0",
|