Created
September 12, 2013 23:31
-
-
Save grayghostvisuals/6545193 to your computer and use it in GitHub Desktop.
This is an example of a Grunt build task from https://github.com/yeoman/grunt-usemin/issues/176#issuecomment-24361368 that copies over a file with replaced references and stashes them into a build directory for production.
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) { | |
grunt.initConfig({ | |
clean: ['build'], | |
copy: { | |
html: { // in preparation for usemin | |
files: [ | |
{src: 'index.html', dest: 'build/'} | |
] | |
} | |
}, | |
uglify: { | |
all: { | |
files: { | |
'build/output.min.js': ['lib/angular.min.js', 'scripts/*.js'] | |
} | |
} | |
}, | |
useminPrepare: { | |
options: {dest: 'build'} | |
}, | |
usemin: { | |
html: 'build/index.html', // must have this | |
//css: '*.css', | |
options: { | |
dirs: ['lib', 'scripts'] | |
} | |
}, | |
}); | |
var tasks = [ | |
'grunt-contrib-clean', | |
'grunt-contrib-copy', | |
'grunt-contrib-cssmin', | |
'grunt-contrib-uglify', | |
'grunt-usemin' | |
]; | |
tasks.forEach(grunt.loadNpmTasks); | |
grunt.registerTask('min', ['copy', 'useminPrepare', 'uglify', 'usemin']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do not take this as verbatim. Customize to your needs