ai-sprint-kit 2.1.9 → 2.1.11
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/ai-sprint.js +2 -2
- package/package.json +1 -1
package/bin/ai-sprint.js
CHANGED
|
@@ -187,7 +187,7 @@ program
|
|
|
187
187
|
const setupMcp = await question('Configure MCP servers now? (y/N): ');
|
|
188
188
|
if (setupMcp.toLowerCase() === 'y') {
|
|
189
189
|
console.log();
|
|
190
|
-
const mcpScript = path.join(targetDir, '.claude', 'scripts', 'setup-mcp.
|
|
190
|
+
const mcpScript = path.join(targetDir, '.claude', 'scripts', 'setup-mcp.cjs');
|
|
191
191
|
try {
|
|
192
192
|
const { runMcpSetup } = require(mcpScript);
|
|
193
193
|
await runMcpSetup();
|
|
@@ -518,7 +518,7 @@ program
|
|
|
518
518
|
.description('Configure MCP servers')
|
|
519
519
|
.option('-d, --dir <directory>', 'Target directory', process.cwd())
|
|
520
520
|
.action(async (options) => {
|
|
521
|
-
const scriptPath = path.join(options.dir, '.claude', 'scripts', 'setup-mcp.
|
|
521
|
+
const scriptPath = path.join(options.dir, '.claude', 'scripts', 'setup-mcp.cjs');
|
|
522
522
|
try {
|
|
523
523
|
const { runMcpSetup } = require(scriptPath);
|
|
524
524
|
await runMcpSetup();
|