Created
February 1, 2016 16:00
-
-
Save sbalay/c19af2cdcbf6793490a9 to your computer and use it in GitHub Desktop.
Gulp tasks' settings for production environment
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
export default { | |
/** | |
* concat | |
* Enables/Disables source files concatenation | |
*/ | |
concat: true, | |
/** | |
* lint | |
* Enables/Disables source code linting | |
*/ | |
lint: false, | |
/** | |
* minify | |
* Enables/Disables source code minification | |
*/ | |
minify: true, | |
/** | |
* sourcemaps | |
* Enables/Disables js and sass sourcemaps | |
*/ | |
sourcemaps: false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment