Skip to content

Commit a6c0064

Browse files
jeremyVignellesbumbu
authored andcommitted
Fixed build issues for Node.js v4.2. Closes #178
First reported in #169
1 parent a8e1602 commit a6c0064

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

gulpfile.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ var gulp = require('gulp')
66
, uglify = require('gulp-uglify')
77
, browserify = require('browserify')
88
, source = require('vinyl-source-stream')
9-
, streamify = require('gulp-streamify')
109
, rename = require('gulp-rename')
1110
, qunit = require('gulp-qunit')
1211
, jshint = require('gulp-jshint')
1312
, jscs = require('gulp-jscs')
1413
, sync = require('gulp-config-sync')
1514
, header = require('gulp-header')
15+
, buffer = require('vinyl-buffer')
1616
, pkg = require('./package.json')
1717
, banner = "// svg-pan-zoom v<%= pkg.version %>" + "\n" + "// https://github.com/ariutta/svg-pan-zoom" + "\n"
1818
;
@@ -28,10 +28,11 @@ gulp.task('browserify', function() {
2828
this.emit("end")
2929
})
3030
.pipe(source('svg-pan-zoom.js'))
31+
.pipe(buffer())
3132
.pipe(header(banner, {pkg: pkg}))
3233
.pipe(gulp.dest('./dist/'))
33-
.pipe(streamify(rename('svg-pan-zoom.min.js')))
34-
.pipe(streamify(uglify()))
34+
.pipe(rename('svg-pan-zoom.min.js'))
35+
.pipe(uglify())
3536
.pipe(header(banner, {pkg: pkg}))
3637
.pipe(gulp.dest('./dist/'))
3738
});

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
"gulp-plumber": "^0.6.6",
4848
"gulp-qunit": "^1.1.0",
4949
"gulp-rename": "^1.2.0",
50-
"gulp-streamify": "0.0.5",
5150
"gulp-uglify": "^1.0.2",
5251
"gulp-watch": "^3.0.0",
52+
"vinyl-buffer": "^1.0.0",
5353
"vinyl-source-stream": "^1.0.0"
5454
}
5555
}

0 commit comments

Comments
 (0)