fix: deploy show tips

This commit is contained in:
熊潇 2025-05-29 11:43:46 +08:00
parent 613ed47474
commit 78d2b2b161
4 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@kevisual/cli", "name": "@kevisual/cli",
"version": "0.0.55-beta-1", "version": "0.0.55-beta-2",
"description": "envision command tools", "description": "envision command tools",
"main": "dist/app.mjs", "main": "dist/app.mjs",
"type": "module", "type": "module",

View File

@ -12,6 +12,7 @@ import { installDeps } from '@/uitls/npm.ts';
import { upload } from '@/module/download/upload.ts'; import { upload } from '@/module/download/upload.ts';
import { getHash } from '@/uitls/hash.ts'; import { getHash } from '@/uitls/hash.ts';
import { queryAppVersion } from '@/query/app-manager/query-app.ts'; import { queryAppVersion } from '@/query/app-manager/query-app.ts';
import { logger } from '@/module/logger.ts';
/** /**
* package.json basename, version, user, appKey * package.json basename, version, user, appKey
* @returns * @returns
@ -126,7 +127,8 @@ const command = new Command('deploy')
console.error(chalk.red('查询应用版本失败'), res2.message); console.error(chalk.red('查询应用版本失败'), res2.message);
return; return;
} }
const { id, data, ...rest } = res2.data?.app || {}; // const { id, data, ...rest } = res.data?.app || {};
const { id, data, ...rest } = res2.data || {};
if (id && !update) { if (id && !update) {
console.log(chalk.green('id: '), id); console.log(chalk.green('id: '), id);
if (!org) { if (!org) {
@ -139,6 +141,7 @@ const command = new Command('deploy')
} else { } else {
// console.log('rest', JSON.stringify(res.data, null, 2)); // console.log('rest', JSON.stringify(res.data, null, 2));
} }
logger.debug('deploy success', res2.data);
if (id && showBackend) { if (id && showBackend) {
console.log('\n'); console.log('\n');
// 获取当前应用的key // 获取当前应用的key

View File

@ -430,7 +430,7 @@ const packCommand = new Command('pack')
} }
if (opts.publish) { if (opts.publish) {
// 运行 deploy 命令 // 运行 deploy 命令
const runDeployCommand = 'envision pack-deploy ' + value.outputFilePath + ' -k ' + appKey; // const runDeployCommand = 'envision pack-deploy ' + value.outputFilePath + ' -k ' + appKey;
const [_app, _command] = process.argv; const [_app, _command] = process.argv;
let deployDist = opts.isTar ? value.outputFilePath : packDist; let deployDist = opts.isTar ? value.outputFilePath : packDist;
const deployCommand = [_app, _command, 'deploy', deployDist, '-k', appKey, '-v', version, '-u']; const deployCommand = [_app, _command, 'deploy', deployDist, '-k', appKey, '-v', version, '-u'];
@ -443,8 +443,8 @@ const packCommand = new Command('pack')
if (opts.yes) { if (opts.yes) {
deployCommand.push('-y', 'yes'); deployCommand.push('-y', 'yes');
} }
console.log(chalk.blue('deploy doing: '), deployCommand.slice(2).join(' '), '\n\n'); console.log(chalk.blue('deploy doing: '), deployCommand.slice(2).join(' '), '\n');
console.log('pack deploy services', chalk.blue('example: '), runDeployCommand); // console.log('pack deploy services', chalk.blue('example: '), runDeployCommand);
program.parse(deployCommand); program.parse(deployCommand);
} }

View File

@ -42,7 +42,7 @@ query.afterResponse = async (response, ctx) => {
export const queryLogin = new QueryLoginNode({ export const queryLogin = new QueryLoginNode({
query: query as any, query: query as any,
onLoad: async () => { onLoad: async () => {
console.log('onLoad'); // console.log('onLoad');
}, },
}); });