diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-10-10 17:16:12 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-10-10 17:16:12 +0200 |
commit | 412b37652b6695a6df4c214d7048275f2912dad7 (patch) | |
tree | 6a2feb84b212d3623a72798988f1bee19946b2c7 /gulpfile.js | |
parent | 2fbeec1225b5431e8c7779eee1396c86e890ab00 (diff) | |
download | svg.js-412b37652b6695a6df4c214d7048275f2912dad7.tar.gz svg.js-412b37652b6695a6df4c214d7048275f2912dad7.zip |
fixes pattern animation (#385)
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js index 37b7803..1cc1c9d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -6,6 +6,7 @@ var del = require('del') , jasmine = require('gulp-jasmine')
, rename = require('gulp-rename')
, size = require('gulp-size')
+ , trim = require('gulp-trimlines')
, uglify = require('gulp-uglify')
, wrapUmd = require('gulp-wrap-umd')
, wrapper = require('gulp-wrapper')
@@ -101,6 +102,7 @@ gulp.task('unify', ['clean'], function() { exports: 'SVG'
}))
.pipe(header(headerLong, { pkg: pkg }))
+ .pipe(trim({ leading: false }))
.pipe(chmod(644))
.pipe(gulp.dest('dist'))
.pipe(size({ showFiles: true, title: 'Full' }))
|