diff options
author | Horst3180 | 2015-07-17 14:34:04 +0200 |
---|---|---|
committer | Horst3180 | 2015-07-17 14:34:04 +0200 |
commit | 8aaf55c319f06160b14f402f012144b74baa8d01 (patch) | |
tree | 7b257c6091c615848d048fd86b6b193360f65e48 /common/gtk-3.0/3.14/gulpfile.js | |
parent | 1d2d684363bfefd9fc2413ec7d8101464e727c0f (diff) | |
download | solarc-theme-8aaf55c319f06160b14f402f012144b74baa8d01.tar.gz solarc-theme-8aaf55c319f06160b14f402f012144b74baa8d01.tar.xz solarc-theme-8aaf55c319f06160b14f402f012144b74baa8d01.zip |
use libsass and update build system
Diffstat (limited to 'common/gtk-3.0/3.14/gulpfile.js')
-rw-r--r-- | common/gtk-3.0/3.14/gulpfile.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.14/gulpfile.js b/common/gtk-3.0/3.14/gulpfile.js new file mode 100644 index 0000000..230ac9d --- /dev/null +++ b/common/gtk-3.0/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']); |