我正在使用npm包" copyfiles"在我的buildcript中。 但目标目录不是我所期望的。
"copy-template": "copyfiles \"./src/**/*.html\" \"dist\"",
我的基本目录结构是:
src/pages/.../htmlfiles
我想要的是:
dist/pages/.../htmlfiles
所以结构与之前没有" src" 目前我总是在我的dist文件夹中的src目录。
dist/src/pages/../htmlfiles
也许你对我有一些提示?
最佳大卫
答案 0 :(得分:3)
按如下方式更改脚本:
...
"scripts": {
"copy-template": "copyfiles -u 1 \"./src/**/*.html\" \"dist\"",
...
},
...
请注意,添加了--up
或-u
选项,如docs中所述。