Skip to content

Instantly share code, notes, and snippets.

@SourceCode
Created September 24, 2016 07:02
Show Gist options
  • Save SourceCode/927fffd21bce73353d110a617e57a5a1 to your computer and use it in GitHub Desktop.
Save SourceCode/927fffd21bce73353d110a617e57a5a1 to your computer and use it in GitHub Desktop.
Grunt Multi Task Example
grunt.initConfig({
concat: {
foo: {
// concat task "foo" target options and files go here.
},
bar: {
// concat task "bar" target options and files go here.
},
},
uglify: {
bar: {
// uglify task "bar" target options and files go here.
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment