Created
September 24, 2016 07:02
-
-
Save SourceCode/927fffd21bce73353d110a617e57a5a1 to your computer and use it in GitHub Desktop.
Grunt Multi Task Example
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
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