const { themify, initThemify } = require('@datorama/themify');
gulp.src('./main.scss')
.pipe(postcss([
initThemify(themifyOptions),
sass(),
themify(themifyOptions)
]))
.pipe(rename("bundle.css"))
.pipe(gulp.dest('dist'));