我要将所有文件夹和文件从dist
文件夹复制到deid
文件夹,下面是我的文件夹结构
copyDist: {
main: {
expand: true,
cwd: 'integration', // 'Current Working Directory'
src: 'dist', // Read everything inside the cwd
dest: 'deid/', // Destination folder
}
},
在gruntfile.js
中编写了上面的代码,当我运行grunt copyDist
时却反复显示
running "copyDist:main" (copyDist) task
如何解决这个问题?