Last active
February 6, 2017 15:12
-
-
Save clintconklin/7393526 to your computer and use it in GitHub Desktop.
Optimizing multiple files with grunt via grunt-contrib-requirejs: http://blog.clintconklin.com/optimizing-multiple-javascript-files-with-grunt-and-requirejs/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
var matches = grunt.file.expand('scripts/template-scripts/**/index.js'); | |
var requirejsOptions = {}; | |
if (matches.length > 0) { | |
for (var x = 0; x < matches.length; x++) { | |
var path = matches[x].replace(/\/index\.js/, ''); | |
requirejsOptions['task' + x] = { | |
"options": { | |
"baseUrl": "./", | |
"wrap": true, | |
"name": path + "/index", | |
"out": path + "/index.min.js", | |
"optimize": "uglify2", | |
"uglify2": { | |
"mangle": false | |
}, | |
"generateSourceMaps": true, | |
"preserveLicenseComments": false, | |
"done": function(done, output) { | |
done(); | |
} | |
} | |
}; | |
} | |
} | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
requirejs: requirejsOptions | |
}); | |
grunt.loadNpmTasks('grunt-contrib-requirejs'); | |
grunt.registerTask('default', ['requirejs']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'd use the
reduce
instead offor
loop and drop the unnecessaryif
statement: