Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Last active May 6, 2017 18:11
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 ahmadawais/84d99f6841426d6efcaf to your computer and use it in GitHub Desktop.
Save ahmadawais/84d99f6841426d6efcaf to your computer and use it in GitHub Desktop.
Gulp: Setting up the varaibles
/**
*
* Gulpfile setup
*
* @since 1.0.0
* @authors Ahmad Awais, @digisavvy, @desaiuditd, @jb510, @dmassiani and @Maxlopez
* @package neat
* @forks _s & some-like-it-neat
*/
// Project configuration
var project = 'neat', // Project name, used for build zip.
url = 'neat.dev', // Local Development URL for BrowserSync. Change as-needed.
bower = './assets/bower_components/'; // Not truly using this yet, more or less playing right now. TO-DO Place in Dev branch
build = './buildtheme/', // Files that you want to package into a zip go here
buildInclude = [
// include common file types
'**/*.php',
'**/*.html',
'**/*.css',
'**/*.js',
'**/*.svg',
'**/*.ttf',
'**/*.otf',
'**/*.eot',
'**/*.woff',
'**/*.woff2',
// include specific files and folders
'screenshot.png',
// exclude files and folders
'!node_modules/**/*',
'!assets/bower_components/**/*',
'!style.css.map',
'!assets/js/custom/*',
'!assets/css/patrials/*'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment