Skip to content

Instantly share code, notes, and snippets.

View adritek's full-sized avatar

Adrian adritek

  • adritek
  • Barcelona, Spain
View GitHub Profile
@adritek
adritek / gist:ac20d3e0955f28e17a5b303e707981f3
Last active September 28, 2017 23:48
Gulp SASS compiler that watches (and waits)...
/*////////////////////////////////////////////////
// SASS compiler that watches... and waits... //
////////////////////////////////////////////////*/
var gulp = require("gulp");
var sass = require("gulp-sass");
var input = "./scss/**/*.scss";
var output = "./css/";