@aiyiran/myclaw 1.1.48 → 1.1.49
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 +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2479,6 +2479,8 @@ if (!command) {
|
|
|
2479
2479
|
runServer(args[1]); // args[1] 是可选的 name
|
|
2480
2480
|
} else if (command === 'sync') {
|
|
2481
2481
|
runSync(args[1]); // args[1] 是可选的 workspace 名称
|
|
2482
|
+
} else if (command === 'init') {
|
|
2483
|
+
console.log('init 还没实现,后续添加钩子');
|
|
2482
2484
|
} else {
|
|
2483
2485
|
console.error('[' + colors.red + '错误' + colors.nc + '] 未知命令: ' + command);
|
|
2484
2486
|
showHelp();
|