fix: use minimal CLI for conversation commands only

- Created bin/brainy-minimal.js with only conversation commands
- Fixes 'brainyData.js does not export Brainy' error
- Removed deprecated boolean package warning with override
- Full CLI will be restored in 3.20.0

This is a temporary fix to ensure conversation setup/remove work
while we refactor the complete CLI system.
This commit is contained in:
David Snelling 2025-09-29 16:09:29 -07:00
parent d2ea0de1f0
commit b26bb1646f
4 changed files with 89 additions and 7 deletions

View file

@ -7,7 +7,7 @@
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"brainy": "bin/brainy.js"
"brainy": "bin/brainy-minimal.js"
},
"sideEffects": [
"./dist/setup.js",
@ -128,6 +128,9 @@
"README.md",
"CHANGELOG.md"
],
"overrides": {
"boolean": "3.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",