Skip to content

Instantly share code, notes, and snippets.

@sbalay
Created February 1, 2016 16:00
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 sbalay/c19af2cdcbf6793490a9 to your computer and use it in GitHub Desktop.
Save sbalay/c19af2cdcbf6793490a9 to your computer and use it in GitHub Desktop.
Gulp tasks' settings for production environment
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