diff options
author | Horst3180 | 2016-04-05 16:19:46 +0200 |
---|---|---|
committer | Horst3180 | 2016-04-05 16:23:55 +0200 |
commit | 428f89c38c8a7ccef31085710bb7a19a3293625a (patch) | |
tree | 80ac03f70c5fc500441a31d09c7ead328cab4301 /common/gnome-shell/3.16/gulpfile.js | |
parent | bf1883a538acbc4cdc80bf823932e3c451904116 (diff) | |
download | solarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.tar.gz solarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.tar.xz solarc-theme-428f89c38c8a7ccef31085710bb7a19a3293625a.zip |
remove duplicate files
Diffstat (limited to 'common/gnome-shell/3.16/gulpfile.js')
-rw-r--r-- | common/gnome-shell/3.16/gulpfile.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/common/gnome-shell/3.16/gulpfile.js b/common/gnome-shell/3.16/gulpfile.js deleted file mode 100644 index 230ac9d..0000000 --- a/common/gnome-shell/3.16/gulpfile.js +++ /dev/null @@ -1,18 +0,0 @@ -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']); |