Skip to content

Instantly share code, notes, and snippets.

@warlyware
Created August 25, 2015 19:34
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 warlyware/b70b1fe539c1fe61ffde to your computer and use it in GitHub Desktop.
Save warlyware/b70b1fe539c1fe61ffde to your computer and use it in GitHub Desktop.
Gulp config file
module.exports = function() {
var client = './src/client';
var config = {
dir: {
temp: './.tmp',
// all js that needs checking and concating
js: [
'./src/**/*.js',
'./*.js'
],
less: client + '/styles/styles.less'
},
};
return config;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment