fix: update envision-cli tools for proxy and run app

This commit is contained in:
2024-12-05 02:26:47 +08:00
parent 2145fca826
commit da6211299b
15 changed files with 738 additions and 479 deletions

View File

@@ -121,3 +121,11 @@ const uploadFiles = async (files: string[], directory: string, { key, version }:
});
};
app.addCommand(command);
const local = new Command('local')
.description('本地部署')
.option('-k, --key <key>', 'key')
.action(() => {
console.log('local deploy');
});
app.addCommand(local);