aboutsummaryrefslogtreecommitdiff
path: root/common/gnome-shell/3.14/gulpfile.js
diff options
context:
space:
mode:
authorHorst31802015-08-10 20:31:22 +0200
committerHorst31802015-08-13 01:15:17 +0200
commitcbbd23ec075997c5b2ffb634ee03724759fbe58e (patch)
tree30fb8413ba2a0aa44bf15493c2f724c934d6727a /common/gnome-shell/3.14/gulpfile.js
parent954f41f19f3c851796b743c38c1300612b0ed525 (diff)
downloadsolarc-theme-cbbd23ec075997c5b2ffb634ee03724759fbe58e.tar.gz
solarc-theme-cbbd23ec075997c5b2ffb634ee03724759fbe58e.tar.xz
solarc-theme-cbbd23ec075997c5b2ffb634ee03724759fbe58e.zip
gnome-shell theme improvements and some osd redesign
Diffstat (limited to 'common/gnome-shell/3.14/gulpfile.js')
-rw-r--r--common/gnome-shell/3.14/gulpfile.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/gnome-shell/3.14/gulpfile.js b/common/gnome-shell/3.14/gulpfile.js
new file mode 100644
index 0000000..230ac9d
--- /dev/null
+++ b/common/gnome-shell/3.14/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']);