prodboard 0.1.1 → 0.1.2
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/CHANGELOG.md +6 -0
- package/README.md +10 -0
- package/package.json +1 -1
- package/src/invocation.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -297,6 +297,16 @@ bun test
|
|
|
297
297
|
bun run typecheck
|
|
298
298
|
```
|
|
299
299
|
|
|
300
|
+
## Upgrading
|
|
301
|
+
|
|
302
|
+
```bash
|
|
303
|
+
# Update to the latest version
|
|
304
|
+
bun install -g prodboard@latest
|
|
305
|
+
|
|
306
|
+
# If running as a systemd service, reinstall to pick up the new binary path
|
|
307
|
+
prodboard install --force
|
|
308
|
+
```
|
|
309
|
+
|
|
300
310
|
## License
|
|
301
311
|
|
|
302
312
|
MIT
|
package/package.json
CHANGED
package/src/invocation.ts
CHANGED
|
@@ -46,7 +46,7 @@ export function buildInvocation(
|
|
|
46
46
|
args.push("--dangerously-skip-permissions");
|
|
47
47
|
|
|
48
48
|
// Output format
|
|
49
|
-
args.push("--output-format", "stream-json");
|
|
49
|
+
args.push("--verbose", "--output-format", "stream-json");
|
|
50
50
|
|
|
51
51
|
// MCP config
|
|
52
52
|
const mcpConfigPath = path.join(PRODBOARD_DIR, "mcp.json");
|