@emiliovt3/vibe-stack 1.0.0 → 1.0.1
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/install.js +7 -0
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// Main entry point — orchestrates full vibe-stack installation in dependency order.
|
|
3
3
|
// Order: node check → gh CLI → gh auth → npm tools → MCP servers → summary
|
|
4
4
|
|
|
5
|
+
import chalk from 'chalk'
|
|
5
6
|
import semver from 'semver'
|
|
6
7
|
import { tools } from '../src/registry.js'
|
|
7
8
|
import { getInstalledVersion, getLatestVersion } from '../src/detector.js'
|
|
@@ -108,6 +109,12 @@ async function main() {
|
|
|
108
109
|
|
|
109
110
|
// 6. Print final summary
|
|
110
111
|
printSummary(results)
|
|
112
|
+
|
|
113
|
+
// 7. Post-install notes for tools that require manual setup
|
|
114
|
+
console.log(chalk.yellow(' ⚠ Excalidraw MCP requires a canvas server per project:'))
|
|
115
|
+
console.log(chalk.gray(' git clone https://github.com/yctimlin/mcp_excalidraw.git'))
|
|
116
|
+
console.log(chalk.gray(' cd mcp_excalidraw && npm install && npm run canvas'))
|
|
117
|
+
console.log(chalk.gray(' Then open http://localhost:3000 in your browser\n'))
|
|
111
118
|
}
|
|
112
119
|
|
|
113
120
|
main().catch(err => {
|