This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/gulpfile.config.js
2016-12-14 00:05:30 +00:00

25 lines
622 B
JavaScript

module.exports = function (plugins) {
return {
autoprefixer: {
browsers: ["last 2 versions", "> 5%"]
},
bower: {
path: 'vendor/bower_components',
},
fonts: {
destination: 'source/assets/fonts',
},
js: {
source: 'assets/js',
pattern: '/**/*.js',
destination: 'source/assets/js',
},
production: !!plugins.util.env.production,
sass: {
source: 'assets/sass',
pattern: '/**/*.sass',
destination: 'source/assets/css',
}
}
}