gpt4 book ai didi

javascript - 如何使用 hygen 生成模板后运行脚本?

转载 作者:行者123 更新时间:2023-12-01 00:51:32 25 4
gpt4 key购买 nike

我正在使用hygen为我的项目创建模板。

如何在hygen命令以hygen方式完成后运行脚本(nodejs)?

hygen my-package new awsome-package

例如,在此命令之后,我想将行添加到当前项目中的 tsconfig.json 中。

最佳答案

在 hygen 中,你有 Shell option

这意味着您可以运行 shell 命令(脚本),您只需创建一个文件并插入以下内容,例如:

 ---
sh: "mkdir -p <%= cwd %>/given/app/shell && cat > <%= cwd %>/given/app/shell/hello.piped"
---
hello, this was piped!

当您运行命令时,hello.piped 将通过 cmd 命令显示 hello, this was pipelined! 文本。

在此示例中,您可以将包添加到package.json,然后运行yarn install。

---
inject: true
to: package.json
after: dependencies
skip_if: lodash
sh: cd <%= cwd %> && yarn install
---
"lodash":"*",

关于javascript - 如何使用 hygen 生成模板后运行脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56928834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com