Jamesmybecks提出了一个问题:Configure grunt copy task to exclude files/folders,或许与您遇到的问题类似。
回答者Jamesmybecks给出了该问题的处理方式:
Found the solution:
There is no need for these lines:
------ - ----- ---------- --------- --------------- ----- ------------------ ------- ---------- ----- -------------- ------------- ------------ ----------------- ------------- ----------------- ----- ------------------- -------- ----- ---- ----- ---- ------- ----- ---------- -
because {expand: true, cwd: './', src: ['**'], dest: 'output/'}
is a new copy step, copying all files from ./
to output
. Which is for me not needed, because the above lines are already copying the required files to output/toolkit
.
So the following two lines does the job. No need for options or anything else. To keep out the *.less
files '!**/*.less'
does the job.
------ - ----- ---------- --------- ------------- ----- ------------------ ------- ---------- ----- ---------- --------- -------- ------------- --------- ------------ -------------- ----- ------------------ -
希望本文对你有帮助,欢迎支持JavaScript中文网
来源:JavaScript中文网 ,转载请注明来源 本文地址:https://www.javascriptcn.com/post/26258