Skip to content

Commit eabb9a8

Browse files
xqxianalexqxxu
andauthored
fix: 修复脚手架生成项目上报 (#435)
* fix: 修复脚手架生成项目上报 * ci: 暂时取消 Node 16 环境,提高成功率 避免遇到以下错误: ``` npm ERR! code ECONNRESET npm ERR! network aborted ``` --------- Co-authored-by: alexqxxu <alexqxxu@tencent.com>
1 parent 6ece76f commit eabb9a8

File tree

6 files changed

+77
-118
lines changed

6 files changed

+77
-118
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- 10
2323
- 12
2424
- 14
25-
- 16
25+
# - 16
2626
architecture:
2727
- x64
2828
# an extra windows-x86 run:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/feflow-cli/package-lock.json

Lines changed: 17 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/feflow-cli/src/core/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,7 @@ export default class Feflow {
244244
}
245245
// 有副作用,暂无好方法改造
246246
if (cmdName === 'help' && registeredCommand) {
247-
registeredCommand.runFn.call(this, ctx);
248-
return;
247+
return registeredCommand.runFn.call(this, ctx);
249248
}
250249
if (commandLine.length === 0) {
251250
return;

0 commit comments

Comments
 (0)