aboutsummaryrefslogtreecommitdiff
path: root/common/cinnamon/gulpfile.js
diff options
context:
space:
mode:
authorHorst31802015-08-13 21:21:06 +0200
committerHorst31802015-08-13 21:21:06 +0200
commite4c806b3d768fc3c1e048f5354c518d2abdbe876 (patch)
tree8709ac49868d392e7ea304f481c99173678219b9 /common/cinnamon/gulpfile.js
parentcbbd23ec075997c5b2ffb634ee03724759fbe58e (diff)
downloadsolarc-theme-e4c806b3d768fc3c1e048f5354c518d2abdbe876.tar.gz
solarc-theme-e4c806b3d768fc3c1e048f5354c518d2abdbe876.tar.xz
solarc-theme-e4c806b3d768fc3c1e048f5354c518d2abdbe876.zip
add cinnamon theme
Diffstat (limited to 'common/cinnamon/gulpfile.js')
-rw-r--r--common/cinnamon/gulpfile.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/cinnamon/gulpfile.js b/common/cinnamon/gulpfile.js
new file mode 100644
index 0000000..230ac9d
--- /dev/null
+++ b/common/cinnamon/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']);