如何忽略文件grunt uglify

背景

大约30分钟前我刚刚开始使用咕噜声。 所以请忍受我。

但是我有一个相当简单的脚本,它会查看我的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正在获得2倍,4倍,8倍,16倍等等。最好的方法是添加一个exception,并忽略main.min.js

到src数组的末尾 ,添加

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

这将排除它。 那! 把它变成排除。

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

匹配从头开始的模式的path! 将从返回的数组中排除。 模式按顺序处理,所以包含和排除顺序是重要的。

这不是特定于grunt uglify,但任何使用grunt约定来指定文件的任务都可以这样工作。

作为一般性build议,尽pipe我会build议把你的源文件放在别的地方。 就像在一个root dist文件夹中一样。