diff options
author | Horst3180 | 2016-02-19 11:06:17 +0100 |
---|---|---|
committer | Horst3180 | 2016-02-19 11:06:17 +0100 |
commit | ee864708c34027a1e3b0ad6aff38c1c3b4c3463d (patch) | |
tree | e7ecdbd51a713ff1f1c9ef84a9cee7f001f39426 /common/gtk-3.0/3.20/gulpfile.js | |
parent | 4680db991da85c8fc915aa033516b2cabae79dbe (diff) | |
download | solarc-theme-ee864708c34027a1e3b0ad6aff38c1c3b4c3463d.tar.gz solarc-theme-ee864708c34027a1e3b0ad6aff38c1c3b4c3463d.tar.xz solarc-theme-ee864708c34027a1e3b0ad6aff38c1c3b4c3463d.zip |
adapt to changes in GTK+ 3.19.x
Diffstat (limited to 'common/gtk-3.0/3.20/gulpfile.js')
-rw-r--r-- | common/gtk-3.0/3.20/gulpfile.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.20/gulpfile.js b/common/gtk-3.0/3.20/gulpfile.js new file mode 100644 index 0000000..230ac9d --- /dev/null +++ b/common/gtk-3.0/3.20/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']); |