@girardmedia/bootspring 2.0.3 → 2.0.5
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/cli/build.js +2 -2
- package/core/telemetry.js +1 -0
- package/mcp/contracts/mcp-contract.v1.json +1 -1
- package/package.json +1 -1
package/cli/build.js
CHANGED
|
@@ -255,7 +255,7 @@ ${c.cyan}${c.bold}Building: ${nextTask.title}${c.reset}
|
|
|
255
255
|
await loop.runLoop(projectRoot, {
|
|
256
256
|
source: 'build',
|
|
257
257
|
iterations: 1,
|
|
258
|
-
live:
|
|
258
|
+
live: true, // Always show live output so user can see Claude working
|
|
259
259
|
verbose: args.verbose || args.v,
|
|
260
260
|
force: true // Always force to avoid "session already running" issues
|
|
261
261
|
});
|
|
@@ -301,7 +301,7 @@ ${c.dim}Press Ctrl+C to stop at any time${c.reset}
|
|
|
301
301
|
await loop.runLoop(projectRoot, {
|
|
302
302
|
source: 'build',
|
|
303
303
|
iterations: args.iterations || 50,
|
|
304
|
-
live:
|
|
304
|
+
live: true, // Always show live output so user can see Claude working
|
|
305
305
|
verbose: args.verbose || args.v,
|
|
306
306
|
force: true // Always force to avoid "session already running" issues
|
|
307
307
|
});
|
package/core/telemetry.js
CHANGED
package/package.json
CHANGED