我想在项目启动时自动将一些文件从一个文件夹复制到另一个文件夹。现在我通过在cmd“grunt copy”中运行命令来实现。请帮帮我。
我的Gruntfile.js代码:
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
copy: {
t1: {
src: 'Scripts/**',
dest:'Target/'
}
}
});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', 'copy:t1');
};