@aiyiran/myclaw 1.0.65 → 1.0.66
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/index.js +7 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -259,6 +259,11 @@ function runWsl2() {
|
|
|
259
259
|
wsl2.run();
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
+
function runLaunch() {
|
|
263
|
+
const launch = require('./launch');
|
|
264
|
+
launch.run();
|
|
265
|
+
}
|
|
266
|
+
|
|
262
267
|
// ============================================================================
|
|
263
268
|
// Prepare 智能初始化
|
|
264
269
|
// ============================================================================
|
|
@@ -821,6 +826,8 @@ if (!command || command === 'help' || command === '--help' || command === '-h')
|
|
|
821
826
|
runOpen();
|
|
822
827
|
} else if (command === 'wsl2') {
|
|
823
828
|
runWsl2();
|
|
829
|
+
} else if (command === 'launch') {
|
|
830
|
+
runLaunch();
|
|
824
831
|
} else if (command === 'bat') {
|
|
825
832
|
runBat();
|
|
826
833
|
} else if (command === 'patch') {
|