aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-3.0/3.18/gulpfile.js
diff options
context:
space:
mode:
authorHorst31802015-08-18 15:30:26 +0200
committerHorst31802015-08-18 15:30:26 +0200
commit643ec36e2bb0df263d9ccc5aefabb503ca2a1c10 (patch)
tree6a7486c2f8d819a34f40feb2b698d16aed5058d3 /common/gtk-3.0/3.18/gulpfile.js
parent882b84bc30ec03cfeb9fc8a0327104430edb7e69 (diff)
downloadsolarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.tar.gz
solarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.tar.xz
solarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.zip
add some fixes for GTK+ 3.18
Diffstat (limited to 'common/gtk-3.0/3.18/gulpfile.js')
-rw-r--r--common/gtk-3.0/3.18/gulpfile.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.18/gulpfile.js b/common/gtk-3.0/3.18/gulpfile.js
new file mode 100644
index 0000000..230ac9d
--- /dev/null
+++ b/common/gtk-3.0/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']);