NetanelBasal
5/8/2018 - 4:06 PM

themify-2.js

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'));