Gulp updates

This commit is contained in:
Oliver Davies 2016-11-08 00:55:35 +00:00
parent 81562de915
commit 8c01e88af4
5 changed files with 67 additions and 50 deletions

17
gulpfile.config.js Normal file
View file

@ -0,0 +1,17 @@
module.exports = function(plugins) {
return {
bowerDir: 'vendor/bower_components',
fontsDir: 'source/assets/fonts',
js: {
sourceDir: 'assets/js',
outputDir: 'source/assets/js',
pattern: '/**/*.js'
},
production: !!plugins.util.env.production,
sass: {
sourceDir: 'assets/sass',
pattern: '/**/*.sass',
outputDir: 'source/assets/css'
}
};
}