Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Latest commit

 

History

History
27 lines (25 loc) · 1.01 KB

TODO.md

File metadata and controls

27 lines (25 loc) · 1.01 KB

To Do

  • Implement Gulp's lastRun() API on gulp-imagemin task.
  • Use Gulp's watch() instead of gulp-watch plugin.
  • Concat css files with gulp-concat.
  • Replace gulp-minify-css + gulp-purifycss with gulp-postcss.
  • Update browserSync task
function browser_sync() {
	browserSync.init({
	    server: {
	        baseDir: './assets/'
        }
    });
}
function reload(done) {
	browserSync.reload();
	done();
}