claude-flow 1.0.51 → 1.0.52
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/claude-flow +2 -2
- package/package.json +1 -1
package/bin/claude-flow
CHANGED
|
@@ -41,8 +41,8 @@ if (!denoPath) {
|
|
|
41
41
|
process.exit(1);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
// Use the
|
|
45
|
-
const cliPath = path.join(__dirname, '..', 'src', 'cli', '
|
|
44
|
+
// Use the simple CLI JavaScript file (works better for npm packages)
|
|
45
|
+
const cliPath = path.join(__dirname, '..', 'src', 'cli', 'simple-cli.js');
|
|
46
46
|
|
|
47
47
|
// Run the CLI with Deno
|
|
48
48
|
const deno = spawn(denoPath, ['run', '--allow-all', '--no-check', cliPath, ...process.argv.slice(2)], {
|