As of now, we have to specify every single file in index.js that should be copied into the final project. It's not convenient to keep track of every new file and would eventually create big junks of code for a really straightforward task.
So, I would like to be able to specify only a directory, which entire contents will get copied. If some of the files in this directory should be processed with template method, than I could specify those separately.
As of now, we have to specify every single file in
index.js
that should be copied into the final project. It's not convenient to keep track of every new file and would eventually create big junks of code for a really straightforward task.So, I would like to be able to specify only a directory, which entire contents will get copied. If some of the files in this directory should be processed with
template
method, than I could specify those separately.