如何组合文件而不是使用grunt缩小它们

时间:2016-01-19 07:51:53

标签: javascript gruntjs

我有以下grunt文件:

module.exports = function(grunt) {

  grunt.initConfig({
    cssmin: {
      options: {
        shorthandCompacting: false,
        roundingPrecision: -1
      },
      target: {
        files: {
          'css/output.css': ['css/one.css', 'css/two.css']
        }
      }
    }
  });

  grunt.loadNpmTasks('grunt-contrib-cssmin');
  grunt.registerTask('default', ['cssmin']);

};

今天刚开始使用grunt.js,看看文档和示例,我使用的是以下插件:

CSS-CONTRIB-MIN

现在,我的文件被精简为一个,但我真正想要的是它们只能合并为一个而不是缩小。我怎么做到这一点?

1 个答案:

答案 0 :(得分:1)

您应该使用grunt-contrib-concat插件执行此任务。仔细查看有关如何配置任务的GitHub文档(例如分隔符,横幅等)

grunt.initConfig({
  concat: {
    dist: {
      src: ['css/one.css', 'css/two.css'],
      dest: 'css/output.css',
    },
  },
});