Created
November 2, 2012 23:17
-
-
Save adparadise/4004955 to your computer and use it in GitHub Desktop.
Grunt concatenation
This file contains hidden or 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) { | |
grunt.initConfig({ | |
concat: { | |
dist: { | |
src: ['src/util.js', | |
'src/project.js', | |
'src/execute.js'], | |
dest: 'dist/project.js' | |
} | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment