diff options
author | Horst3180 | 2015-09-12 18:36:34 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-12 18:36:34 +0200 |
commit | 38a1e46559e71646df76bb08a087abbb9693ebea (patch) | |
tree | 4c88dbf2c1df3e0a12d8c49cc2fc1ea59ca12a44 /common/gnome-shell/3.18/gulpfile.js | |
parent | 86a5c78ed391e8000c87639c31739586e603fba5 (diff) | |
download | solarc-theme-38a1e46559e71646df76bb08a087abbb9693ebea.tar.gz solarc-theme-38a1e46559e71646df76bb08a087abbb9693ebea.tar.xz solarc-theme-38a1e46559e71646df76bb08a087abbb9693ebea.zip |
gnome-shell: update to 3.18
Diffstat (limited to 'common/gnome-shell/3.18/gulpfile.js')
-rw-r--r-- | common/gnome-shell/3.18/gulpfile.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/gnome-shell/3.18/gulpfile.js b/common/gnome-shell/3.18/gulpfile.js new file mode 100644 index 0000000..230ac9d --- /dev/null +++ b/common/gnome-shell/3.18/gulpfile.js @@ -0,0 +1,18 @@ +var gulp = require("gulp"); +var sass = require("gulp-sass"); +var filter = require('gulp-filter'); + +gulp.task('sass', function () { + return gulp.src('sass/*.scss') + .pipe(sass({ + outputStyle: 'nested', + precision: 5, + onError: function (err) { + notify().write(err); + } + })) + .pipe(gulp.dest('.')) +}); + + +gulp.task('default', ['sass']); |