如何在使用npm copy

时间:2015-10-28 10:49:37

标签: gruntjs copy copy-paste grunt-contrib-uglify

我有一个公共文件夹,里面有一个index.html文件,必须将其排除,复制到分发文件夹怎么做

copy: {
      main: {
        files: [
            {expand: true, cwd: 'public/', src: ['**'], dest: '../Distribution/public/'},
        ]
      }
    }

这里的源代码我希望公共文件夹中的所有文件都是/ Distribution / public / except index.html,它存在于公共

1 个答案:

答案 0 :(得分:0)

我知道我只是将源文件包含在shoen下面

copy: {
      main: {
        files: [
            {expand: true, cwd: 'public/', src: ['**','!index.html'], dest: '../Distribution/public/'},
        ]
      }
    }