如何在项目运行时自动运行Grunt Copy Task

时间:2016-10-01 15:50:13

标签: node.js gruntjs grunt-contrib-copy

我想在项目启动时自动将一些文件从一个文件夹复制到另一个文件夹。现在我通过在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');
};

0 个答案:

没有答案