gpt4 book ai didi

node.js - NX : Copy one extra file to build directory

转载 作者:行者123 更新时间:2023-12-05 02:33:20 24 4
gpt4 key购买 nike

我有一个用 nx 构建的项目我正在将它部署到 Google App Engine。

它需要在同一文件夹中的 app.yaml

有没有办法告诉 nx builder 将该额外文件复制到其他所有文件旁边的构建目录中?

最佳答案

我猜你现在已经想通了,但如果有人还在寻找解决方案;

project.json 中,您可以为目标指定 Assets ,因此如果您需要 app.yaml,您可以这样做:

...
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/example",
"main": "apps/example/src/index.ts",
"tsConfig": "apps/example/tsconfig.app.json",
"assets": [
"apps/example/*.md",
"apps/example/src/app.yaml" <-- specify your path here
]
}
}
...

关于node.js - NX : Copy one extra file to build directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71015454/

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