@cloudbase/cli 2.2.13 → 2.2.14
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/cloudbase.js +1 -1
- package/bin/tcb.js +158 -270
- package/lib/commands/lowcode/comps.js +1 -3
- package/package.json +6 -6
package/bin/cloudbase.js
CHANGED
package/bin/tcb.js
CHANGED
|
@@ -9,315 +9,205 @@ const logSymbols = require('log-symbols')
|
|
|
9
9
|
const didYouMean = require('didyoumean')
|
|
10
10
|
const updateNotifier = require('update-notifier')
|
|
11
11
|
const frameworkPkg = require('@cloudbase/framework-core/package.json')
|
|
12
|
-
const { CloudApiService } = require('@cloudbase/cloud-api')
|
|
13
|
-
const { getCredentialWithoutCheck } = require('@cloudbase/toolbox')
|
|
14
|
-
const { Confirm } = require('enquirer')
|
|
15
|
-
const execa = require('execa')
|
|
16
12
|
|
|
17
13
|
const pkg = require('../package.json')
|
|
18
14
|
const store = require('../lib/utils/store')
|
|
19
15
|
const { ALL_COMMANDS } = require('../lib/constant')
|
|
20
16
|
const { getProxy } = require('../lib/utils/net')
|
|
21
17
|
const { getCloudBaseConfig, getPrivateSettings } = require('../lib/utils/config')
|
|
22
|
-
const {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
const regionSupported = ['ap-shanghai', 'ap-beijing', 'ap-guangzhou']
|
|
26
|
-
const regionSupportedMap = {
|
|
27
|
-
'ap-shanghai': '上海',
|
|
28
|
-
'ap-beijing': '北京',
|
|
29
|
-
'ap-guangzhou': '广州',
|
|
30
|
-
'sh': '上海',
|
|
31
|
-
'bj': '北京',
|
|
32
|
-
'gz': '广州'
|
|
33
|
-
}
|
|
18
|
+
const {registerCommands} = require('../lib')
|
|
34
19
|
|
|
35
20
|
async function main() {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
21
|
+
let processArgv = process.argv
|
|
22
|
+
const isBeta = pkg.version.indexOf('-') > -1
|
|
23
|
+
process.CLI_VERSION = pkg.version
|
|
39
24
|
|
|
40
|
-
|
|
25
|
+
const [major, minor] = process.versions.node.split('.').slice(0, 2)
|
|
41
26
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
)
|
|
27
|
+
// Node 版本检验提示
|
|
28
|
+
if (Number(major) < 8 || (Number(major) === 8 && Number(minor) < 6)) {
|
|
29
|
+
console.log(
|
|
30
|
+
chalk.bold.red(
|
|
31
|
+
'您的 Node 版本较低,CloudBase CLI 可能无法正常运行,请升级 Node 到 v8.6.0 以上!\n'
|
|
48
32
|
)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
// Sentry 错误上报
|
|
52
|
-
Sentry.init({
|
|
53
|
-
release: pkg.version,
|
|
54
|
-
dsn: 'https://fff0077d06624655ad70d1ee25df419e@report.url.cn/sentry/1782',
|
|
55
|
-
httpsProxy: getProxy() || '',
|
|
56
|
-
serverName: os.hostname(),
|
|
57
|
-
integrations: [
|
|
58
|
-
new Sentry.Integrations.OnUnhandledRejection({
|
|
59
|
-
mode: 'none'
|
|
60
|
-
})
|
|
61
|
-
]
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
// 输出版本信息
|
|
65
|
-
console.log(chalk.gray(`CloudBase CLI ${pkg.version}`))
|
|
66
|
-
console.log(chalk.gray(`CloudBase Framework ${frameworkPkg.version}`))
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
const yargsParsedResult = yargsParser(process.argv.slice(2));
|
|
70
|
-
const config = await getCloudBaseConfig(yargsParsedResult.configFile);
|
|
71
|
-
const privateSettings = getPrivateSettings(config);
|
|
72
|
-
if (privateSettings) {
|
|
73
|
-
console.log(chalk.gray(`检测到私有化配置`))
|
|
74
|
-
if (privateSettings.endpoints && privateSettings.endpoints.cliApi) {
|
|
75
|
-
// 初始化 lowcode 服务cliapi入口
|
|
76
|
-
process.env.CLOUDBASE_LOWCODE_CLOUDAPI_URL = privateSettings.endpoints.cliApi;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
// 注册命令
|
|
81
|
-
await registerCommands()
|
|
33
|
+
)
|
|
34
|
+
}
|
|
82
35
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
36
|
+
// Sentry 错误上报
|
|
37
|
+
Sentry.init({
|
|
38
|
+
release: pkg.version,
|
|
39
|
+
dsn: 'https://fff0077d06624655ad70d1ee25df419e@report.url.cn/sentry/1782',
|
|
40
|
+
httpsProxy: getProxy() || '',
|
|
41
|
+
serverName: os.hostname(),
|
|
42
|
+
integrations: [
|
|
43
|
+
new Sentry.Integrations.OnUnhandledRejection({
|
|
44
|
+
mode: 'none'
|
|
45
|
+
})
|
|
46
|
+
]
|
|
47
|
+
})
|
|
95
48
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
program.option('--mode <mode>', '指定加载 env 文件的环境')
|
|
100
|
-
program.option('--config-file <path>', '设置配置文件,默认为 cloudbaserc.json')
|
|
101
|
-
program.option('-r, --region <region>', '指定环境地域')
|
|
49
|
+
// 输出版本信息
|
|
50
|
+
console.log(chalk.gray(`CloudBase CLI ${pkg.version}`))
|
|
51
|
+
console.log(chalk.gray(`CloudBase Framework ${frameworkPkg.version}`))
|
|
102
52
|
|
|
103
|
-
if (!privateSettings) {
|
|
104
|
-
// HACK: 隐藏自动生成的 help 信息
|
|
105
|
-
program.helpOption(false)
|
|
106
|
-
}
|
|
107
|
-
const isCommandEmpty = yargsParsedResult._.length === 0;
|
|
108
53
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
54
|
+
const yargsParsedResult = yargsParser(process.argv.slice(2));
|
|
55
|
+
const config = await getCloudBaseConfig(yargsParsedResult.configFile);
|
|
56
|
+
const privateSettings = getPrivateSettings(config);
|
|
57
|
+
if (privateSettings) {
|
|
58
|
+
console.log(chalk.gray(`检测到私有化配置`))
|
|
59
|
+
if(privateSettings.endpoints && privateSettings.endpoints.cliApi){
|
|
60
|
+
// 初始化 lowcode 服务cliapi入口
|
|
61
|
+
process.env.CLOUDBASE_LOWCODE_CLOUDAPI_URL = privateSettings.endpoints.cliApi;
|
|
116
62
|
}
|
|
117
63
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
if (!Array.isArray(args) || !args.length) {
|
|
122
|
-
return
|
|
123
|
-
}
|
|
124
|
-
const cmd = args.join(' ')
|
|
125
|
-
console.log(chalk.bold.red('Error: ') + `${cmd} 不是有效的命令`)
|
|
126
|
-
didYouMean.threshold = 0.5
|
|
127
|
-
didYouMean.caseSensitive = false
|
|
128
|
-
const suggest = didYouMean(cmd, ALL_COMMANDS)
|
|
129
|
-
if (suggest) {
|
|
130
|
-
console.log(chalk.bold(`\n您是不是想使用命令:tcb ${suggest}\n`))
|
|
131
|
-
}
|
|
132
|
-
console.log(`💡使用 ${chalk.bold('tcb -h')} 查看所有命令`)
|
|
133
|
-
})
|
|
134
|
-
|
|
135
|
-
// 没有使用命令
|
|
136
|
-
if (isCommandEmpty) {
|
|
137
|
-
if (privateSettings) {
|
|
138
|
-
program.outputHelp()
|
|
139
|
-
} else {
|
|
140
|
-
if (['-h', '--help'].includes(processArgv[2])) {
|
|
141
|
-
// 需要隐藏的选项
|
|
142
|
-
const hideArgs = ['-h', '--help']
|
|
143
|
-
hideArgs.forEach((arg) => {
|
|
144
|
-
const index = processArgv.indexOf(arg)
|
|
145
|
-
if (index > -1) {
|
|
146
|
-
processArgv.splice(index, 1)
|
|
147
|
-
}
|
|
148
|
-
})
|
|
149
|
-
const { outputHelpInfo } = require('../lib/help')
|
|
150
|
-
outputHelpInfo()
|
|
151
|
-
} else if (!['-v', '--version'].includes(processArgv[2])) {
|
|
152
|
-
// HACK: framework 智能命令
|
|
153
|
-
const { smartDeploy } = require('../lib')
|
|
154
|
-
smartDeploy()
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
64
|
+
}
|
|
65
|
+
// 注册命令
|
|
66
|
+
await registerCommands()
|
|
158
67
|
|
|
68
|
+
// 设置 Sentry 上报的用户 uin
|
|
69
|
+
Sentry.configureScope((scope) => {
|
|
159
70
|
try {
|
|
160
|
-
|
|
71
|
+
const credential = store.authStore.get('credential') || {}
|
|
72
|
+
scope.setUser({
|
|
73
|
+
uin: credential.uin || '',
|
|
74
|
+
ip: address.ip() || ''
|
|
75
|
+
})
|
|
161
76
|
} catch (e) {
|
|
162
|
-
|
|
163
|
-
console.log(errMsg)
|
|
77
|
+
Sentry.captureException(e)
|
|
164
78
|
}
|
|
79
|
+
})
|
|
165
80
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
// 忽略自定义错误的错误栈
|
|
173
|
-
if (err && err.stack && !stackIngoreErrors.includes(err.name)) {
|
|
174
|
-
console.log(err.stack)
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// 3 空格,兼容中文字符编码长度问题
|
|
178
|
-
if (err && err.message) {
|
|
179
|
-
let errMsg = logSymbols.error + ' ' + err.message
|
|
180
|
-
errMsg += err.requestId ? `\n${err.requestId}` : ''
|
|
181
|
-
console.log(errMsg)
|
|
182
|
-
|
|
183
|
-
// 多地域错误提示
|
|
184
|
-
if (errMsg.includes('Environment') && errMsg.includes('not found')) {
|
|
185
|
-
// 检查是否已经指定了 -r 或 --region 参数,如未指定则尝试获取地域信息
|
|
186
|
-
const regionSpecified = processArgv.indexOf('-r') !== -1 || processArgv.indexOf('--region') !== -1
|
|
187
|
-
const region = yargsParsedResult.r || yargsParsedResult.region
|
|
188
|
-
const multiRegionErrMsg = `\n此环境可能不属于当前账号,或为非${regionSupportedMap[region] || '上海'}地域环境,如需切换地域请追加参数(例:-r gz),请检查环境归属,参考多地域使用方法:https://docs.cloudbase.net/cli-v1/region.html`
|
|
189
|
-
if (!regionSpecified) {
|
|
81
|
+
// 设置 options 选项
|
|
82
|
+
program.storeOptionsAsProperties(false)
|
|
83
|
+
program.option('--verbose', '打印出内部运行信息')
|
|
84
|
+
program.option('--mode <mode>', '指定加载 env 文件的环境')
|
|
85
|
+
program.option('--config-file <path>', '设置配置文件,默认为 cloudbaserc.json')
|
|
86
|
+
program.option('-r, --region <region>', '指定环境地域')
|
|
190
87
|
|
|
191
|
-
|
|
192
|
-
|
|
88
|
+
if(!privateSettings) {
|
|
89
|
+
// HACK: 隐藏自动生成的 help 信息
|
|
90
|
+
program.helpOption(false)
|
|
91
|
+
}
|
|
92
|
+
const isCommandEmpty = yargsParsedResult._.length === 0;
|
|
93
|
+
|
|
94
|
+
// -v 时输出的版本信息,设置时避免影响其他命令使用 -v
|
|
95
|
+
if (isCommandEmpty) {
|
|
96
|
+
program.version(
|
|
97
|
+
`\nCLI: ${pkg.version}\nFramework: ${frameworkPkg.version}`,
|
|
98
|
+
'-v, --version',
|
|
99
|
+
'输出当前 CloudBase CLI 版本'
|
|
100
|
+
)
|
|
101
|
+
}
|
|
193
102
|
|
|
194
|
-
|
|
195
|
-
|
|
103
|
+
// 处理无效命令
|
|
104
|
+
program.action(() => {
|
|
105
|
+
const args = program.args
|
|
106
|
+
if (!Array.isArray(args) || !args.length) {
|
|
107
|
+
return
|
|
108
|
+
}
|
|
109
|
+
const cmd = args.join(' ')
|
|
110
|
+
console.log(chalk.bold.red('Error: ') + `${cmd} 不是有效的命令`)
|
|
111
|
+
didYouMean.threshold = 0.5
|
|
112
|
+
didYouMean.caseSensitive = false
|
|
113
|
+
const suggest = didYouMean(cmd, ALL_COMMANDS)
|
|
114
|
+
if (suggest) {
|
|
115
|
+
console.log(chalk.bold(`\n您是不是想使用命令:tcb ${suggest}\n`))
|
|
116
|
+
}
|
|
117
|
+
console.log(`💡使用 ${chalk.bold('tcb -h')} 查看所有命令`)
|
|
118
|
+
})
|
|
196
119
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
if (regionArgIndex !== -1) {
|
|
210
|
-
processArgv[regionArgIndex + 1] = predictRegion
|
|
211
|
-
} else {
|
|
212
|
-
processArgv.push('-r', predictRegion)
|
|
213
|
-
}
|
|
214
|
-
// 重新执行命令
|
|
215
|
-
const newArgvStr = processArgv.slice(2).join(' ')
|
|
216
|
-
console.log(`\n${chalk.yellow.bold('正在重新执行命令:')} tcb ${newArgvStr}\n`)
|
|
217
|
-
await execa('tcb', processArgv.slice(2), {
|
|
218
|
-
stdio: 'inherit'
|
|
219
|
-
})
|
|
220
|
-
process.emit('tcbExit')
|
|
221
|
-
process.exit(0)
|
|
222
|
-
} else {
|
|
223
|
-
console.log(chalk.yellow.bold(multiRegionErrMsg))
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
} else {
|
|
227
|
-
console.log(chalk.yellow.bold(multiRegionErrMsg))
|
|
120
|
+
// 没有使用命令
|
|
121
|
+
if (isCommandEmpty) {
|
|
122
|
+
if(privateSettings) {
|
|
123
|
+
program.outputHelp()
|
|
124
|
+
} else {
|
|
125
|
+
if (['-h', '--help'].includes(processArgv[2])) {
|
|
126
|
+
// 需要隐藏的选项
|
|
127
|
+
const hideArgs = ['-h', '--help']
|
|
128
|
+
hideArgs.forEach((arg) => {
|
|
129
|
+
const index = processArgv.indexOf(arg)
|
|
130
|
+
if (index > -1) {
|
|
131
|
+
processArgv.splice(index, 1)
|
|
228
132
|
}
|
|
229
|
-
}
|
|
133
|
+
})
|
|
134
|
+
const { outputHelpInfo } = require('../lib/help')
|
|
135
|
+
outputHelpInfo()
|
|
136
|
+
} else if (!['-v', '--version'].includes(processArgv[2])) {
|
|
137
|
+
// HACK: framework 智能命令
|
|
138
|
+
const { smartDeploy } = require('../lib')
|
|
139
|
+
smartDeploy()
|
|
230
140
|
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
231
143
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
144
|
+
try {
|
|
145
|
+
program.parse(processArgv)
|
|
146
|
+
} catch (e) {
|
|
147
|
+
const errMsg = `${logSymbols.error} ${e.message || '参数异常,请检查您是否使用了正确的命令!'}`
|
|
148
|
+
console.log(errMsg)
|
|
149
|
+
}
|
|
236
150
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
151
|
+
/**
|
|
152
|
+
* 处理异常
|
|
153
|
+
*/
|
|
154
|
+
function errorHandler(err) {
|
|
155
|
+
process.emit('tcbError')
|
|
156
|
+
const stackIngoreErrors = ['TencentCloudSDKHttpException', 'CloudBaseError']
|
|
157
|
+
// 忽略自定义错误的错误栈
|
|
158
|
+
if (err && err.stack && !stackIngoreErrors.includes(err.name)) {
|
|
159
|
+
console.log(err.stack)
|
|
241
160
|
}
|
|
242
161
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
const fetchedRegion = await Promise.all(regionSupported.map(async region => {
|
|
249
|
-
const { EnvList = [] } = await fetchEnvInfoWithRegion(envId, region)
|
|
250
|
-
if (EnvList.length !== 0 && EnvList.find(item => item.EnvId === envId)) {
|
|
251
|
-
return res.EnvList[0].Region
|
|
252
|
-
}
|
|
253
|
-
return ''
|
|
254
|
-
}))
|
|
162
|
+
// 3 空格,兼容中文字符编码长度问题
|
|
163
|
+
if (err && err.message) {
|
|
164
|
+
let errMsg = logSymbols.error + ' ' + err.message
|
|
165
|
+
errMsg += err.requestId ? `\n${err.requestId}` : ''
|
|
166
|
+
console.log(errMsg)
|
|
255
167
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
168
|
+
// 多地域错误提示
|
|
169
|
+
if (errMsg.includes('Environment') && errMsg.includes('not found')) {
|
|
170
|
+
console.log(
|
|
171
|
+
chalk.yellow.bold(
|
|
172
|
+
'\n此环境可能不属于当前账号,或为非上海地域环境,如需切换地域请追加参数(例:-r gz),请检查环境归属,参考多地域使用方法:https://docs.cloudbase.net/cli-v1/region.html'
|
|
173
|
+
)
|
|
174
|
+
)
|
|
175
|
+
}
|
|
263
176
|
}
|
|
264
177
|
|
|
265
|
-
//
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
const commonOpts = {
|
|
269
|
-
service: 'tcb',
|
|
270
|
-
version: '2019-09-24',
|
|
271
|
-
proxy: getProxy(),
|
|
272
|
-
timeout: 15000,
|
|
273
|
-
getCredential: async () => {
|
|
274
|
-
if (commonCredential.secretId && !isTokenExpired(commonCredential)) {
|
|
275
|
-
return commonCredential
|
|
276
|
-
}
|
|
277
|
-
const credential = await getCredentialWithoutCheck()
|
|
278
|
-
if (!credential) {
|
|
279
|
-
throw new Error('无有效身份信息,请使用 cloudbase login 登录')
|
|
280
|
-
}
|
|
281
|
-
commonCredential = credential
|
|
282
|
-
return {
|
|
283
|
-
...credential,
|
|
284
|
-
tokenExpired: Number(credential.accessTokenExpired)
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
const apiName = 'DescribeEnvs'
|
|
289
|
-
const tcbApi = new CloudApiService({
|
|
290
|
-
...commonOpts,
|
|
291
|
-
region
|
|
292
|
-
})
|
|
293
|
-
const res = await tcbApi.request(apiName, {
|
|
294
|
-
EnvId: envId,
|
|
295
|
-
})
|
|
296
|
-
return res
|
|
178
|
+
// 输出详细的错误信息
|
|
179
|
+
if (processArgv.includes('--verbose')) {
|
|
180
|
+
console.log(err)
|
|
297
181
|
}
|
|
298
182
|
|
|
299
|
-
process.
|
|
300
|
-
|
|
183
|
+
process.emit('tcbExit')
|
|
184
|
+
setTimeout(() => {
|
|
185
|
+
process.exit(1)
|
|
186
|
+
}, 1000)
|
|
187
|
+
}
|
|
301
188
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
// Beta 版 1 个小时检查一次,稳定版 1 天检查一次
|
|
305
|
-
const CheckInterval = isBeta ? 3600000 : ONE_DAY
|
|
189
|
+
process.on('uncaughtException', errorHandler)
|
|
190
|
+
process.on('unhandledRejection', errorHandler)
|
|
306
191
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
updateCheckInterval: CheckInterval
|
|
312
|
-
})
|
|
192
|
+
// 检查更新
|
|
193
|
+
const ONE_DAY = 86400000
|
|
194
|
+
// Beta 版 1 个小时检查一次,稳定版 1 天检查一次
|
|
195
|
+
const CheckInterval = isBeta ? 3600000 : ONE_DAY
|
|
313
196
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
197
|
+
const notifier = updateNotifier({
|
|
198
|
+
pkg,
|
|
199
|
+
distTag: isBeta ? 'beta' : 'latest',
|
|
200
|
+
// 检查更新间隔 1 天
|
|
201
|
+
updateCheckInterval: CheckInterval
|
|
202
|
+
})
|
|
203
|
+
|
|
204
|
+
notifier.notify({
|
|
205
|
+
isGlobal: true
|
|
206
|
+
})
|
|
317
207
|
|
|
318
208
|
}
|
|
319
209
|
|
|
320
|
-
if
|
|
210
|
+
if(require.main === module) {
|
|
321
211
|
try {
|
|
322
212
|
main()
|
|
323
213
|
} catch (error) {
|
|
@@ -326,6 +216,4 @@ if (require.main === module) {
|
|
|
326
216
|
}
|
|
327
217
|
process.on('unhandledRejection', (err) => {
|
|
328
218
|
console.log('unhandledRejection', err)
|
|
329
|
-
})
|
|
330
|
-
|
|
331
|
-
exports.main = main
|
|
219
|
+
})
|
|
@@ -235,9 +235,7 @@ __decorate([
|
|
|
235
235
|
__metadata("design:returntype", Promise)
|
|
236
236
|
], LowCodeDebugComps.prototype, "execute", null);
|
|
237
237
|
LowCodeDebugComps = __decorate([
|
|
238
|
-
(0, common_1.ICommand)(
|
|
239
|
-
supportPrivate: true
|
|
240
|
-
})
|
|
238
|
+
(0, common_1.ICommand)()
|
|
241
239
|
], LowCodeDebugComps);
|
|
242
240
|
exports.LowCodeDebugComps = LowCodeDebugComps;
|
|
243
241
|
let LowCodePublishComps = class LowCodePublishComps extends common_1.Command {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.14",
|
|
4
4
|
"description": "cli tool for cloudbase",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "rimraf lib types && tsc
|
|
7
|
+
"build": "rimraf lib types && tsc",
|
|
8
8
|
"watch": "rimraf lib types && tsc -w",
|
|
9
9
|
"dev": "rimraf lib types && tsc -w",
|
|
10
10
|
"eslint": "eslint \"./**/*.ts\"",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@cloudbase/cloud-api": "^0.5.5",
|
|
34
34
|
"@cloudbase/framework-core": "^1.9.6",
|
|
35
|
-
"@cloudbase/lowcode-cli": "^0.
|
|
36
|
-
"@cloudbase/manager-node": "4.
|
|
37
|
-
"@cloudbase/toolbox": "^0.7.
|
|
35
|
+
"@cloudbase/lowcode-cli": "^0.18.5",
|
|
36
|
+
"@cloudbase/manager-node": "4.2.3",
|
|
37
|
+
"@cloudbase/toolbox": "^0.7.4",
|
|
38
38
|
"@sentry/node": "^5.10.2",
|
|
39
39
|
"address": "^1.1.2",
|
|
40
40
|
"chalk": "^2.4.2",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
"ts-jest": "^27",
|
|
87
87
|
"typescript": "^4.7.2"
|
|
88
88
|
}
|
|
89
|
-
}
|
|
89
|
+
}
|