claude-flow 2.0.0-alpha.22 → 2.0.0-alpha.23
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
CHANGED
package/package.json
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
// 3. NPX with latest alpha version (prioritized over global)
|
|
47
47
|
async () => {
|
|
48
|
-
return spawn('npx', ['claude-flow@2.0.0-alpha.
|
|
48
|
+
return spawn('npx', ['claude-flow@2.0.0-alpha.23', ...process.argv.slice(2)], { stdio: 'inherit' });
|
|
49
49
|
}
|
|
50
50
|
];
|
|
51
51
|
|
|
@@ -1116,7 +1116,7 @@ function createWrapperScriptFallback(type) {
|
|
|
1116
1116
|
|
|
1117
1117
|
// 3. NPX with latest alpha version (prioritized over global)
|
|
1118
1118
|
async () => {
|
|
1119
|
-
return spawn('npx', ['claude-flow@2.0.0-alpha.
|
|
1119
|
+
return spawn('npx', ['claude-flow@2.0.0-alpha.23', ...process.argv.slice(2)], { stdio: 'inherit' });
|
|
1120
1120
|
}
|
|
1121
1121
|
];
|
|
1122
1122
|
|