Skip to content

Instantly share code, notes, and snippets.

@DevelopIntelligenceBoulder
Created August 25, 2015 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevelopIntelligenceBoulder/03bd131e7ce994c18032 to your computer and use it in GitHub Desktop.
Save DevelopIntelligenceBoulder/03bd131e7ce994c18032 to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
grunt.initConfig({
// Tasks
task1name: {
build: {
files: {
'dist/file/pretty.css': 'src/file/pretty.file'
}
}
},
task2name: {
options: {
option: 'configuration_of_option'
},
build: {
files: {
'src/files/files.file': 'src/file/**.file'
}
}
},
}); //initConfig
// Load
grunt.loadNpmTasks('grunt-contrib-plugin1');
grunt.loadNpmTasks('grunt-contrib-plugin2');
grunt.loadNpmTasks('grunt-contrib-plugin3');
// create tasks
grunt.registerTask('default', ['task1', 'task2', 'task3', 'task4']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment