53

背景

大约 30 分钟前,我才开始使用 grunt。所以请耐心等待。

但是我有一个相当简单的脚本,它将查看我的 js,然后为我将其全部压缩到一个文件中。

代码

"use strict";
module.exports = function (grunt) {

    // load all grunt tasks
    require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);

    grunt.initConfig({
        pkg: grunt.file.readJSON('package.json'),
        uglify: {
            options: {
                beautify: true,
                report: 'gzip'
            },
            build: {
                src: ['docroot/js/*.js', 'docroot/components/pages/*.js', 'docroot/components/plugins/*.js'],
                dest: 'docroot/js/main.min.js'
            }
        },
        watch: {
            options: {
                dateFormat: function(time) {
                    grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString());
                    grunt.log.writeln('Waiting for more changes...');
                }
            },
            js: {
                files: '<%= uglify.build.src %>',
                tasks: ['uglify']
            }
        }
    });

    grunt.registerTask('default', 'watch');

}

问题

我的 main.min.js 每次都被包含在编译中。这意味着我的 min.js 正在获得 2x、4x、8x、16x 等。解决此问题的最佳方法是添加异常并忽略main.min.js

4

1 回答 1

124

在 src 数组的末尾,添加

'!docroot/js/main.min.js'

这将排除它。这 !把它变成一个排除。

http://gruntjs.com/api/grunt.file#grunt.file.expand

路径匹配以 ! 开头的模式 将从返回的数组中排除。模式是按顺序处理的,因此包含和排除顺序很重要。

这并不特定于 grunt uglify,但是任何使用 grunt 约定来指定文件的任务都将以这种方式工作。

作为一般建议,尽管我建议将构建文件放在源文件之外的其他位置。就像在根dist文件夹中一样。

于 2013-08-27T06:32:45.777 回答