diff options
author | Sam Potts <me@sampotts.me> | 2018-01-19 14:22:26 +1100 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2018-01-19 14:22:26 +1100 |
commit | 6831c3053470d092c11536a837ebf8c1a8b5c530 (patch) | |
tree | 35b1a81e4b0115e98242da2f0551cc5ed0e52ce9 /gulpfile.js | |
parent | 5f96ec6ac2765c176645651881fa2d0ba666f58b (diff) | |
download | plyr-6831c3053470d092c11536a837ebf8c1a8b5c530.tar.lz plyr-6831c3053470d092c11536a837ebf8c1a8b5c530.tar.xz plyr-6831c3053470d092c11536a837ebf8c1a8b5c530.zip |
Transition event fix
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 8dc3cf57..5b7b50f0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -126,8 +126,8 @@ const build = { gulp.task(name, () => gulp .src(bundles[bundle].js[key]) - .pipe(concat(key)) .pipe(sourcemaps.init()) + .pipe(concat(key)) .pipe( rollup( { |