I'm using the npm package "copyfiles" in my buildscript. But the target directory is not that what I expected.
"copy-template": "copyfiles \"./src/**/*.html\" \"dist\"",
My base directory structure is:
src/pages/.../htmlfiles
What I want is:
dist/pages/.../htmlfiles
so the same structure as before without "src" In the moment I have always the src directory in my dist folder.
dist/src/pages/../htmlfiles
Maybe you have some hints for me?
Best David
Change your script as follows:
...
"scripts": {
"copy-template": "copyfiles -u 1 \"./src/**/*.html\" \"dist\"",
...
},
...
Note, the addition of the --up
or -u
option as explained in the docs.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With