diff options
author | Sam Potts <sam@potts.es> | 2018-11-08 23:34:10 +1100 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-11-08 23:34:10 +1100 |
commit | 2c8a337f265f3f84133bc674f3836802588c0c13 (patch) | |
tree | c121595948b254fc58e26c681c7f2e4f0e542e24 /gulpfile.js | |
parent | c24e52d97d691a9056c68acff1f6bb6a7417e2af (diff) | |
download | plyr-2c8a337f265f3f84133bc674f3836802588c0c13.tar.lz plyr-2c8a337f265f3f84133bc674f3836802588c0c13.tar.xz plyr-2c8a337f265f3f84133bc674f3836802588c0c13.zip |
v3.4.7
- Fix for Vimeo fullscreen with non native aspect ratios (fixes #854)
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 7f1ab0c1..5a3c2478 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -447,7 +447,16 @@ if (Object.keys(credentials).includes('aws') && Object.keys(credentials).include }); // Do everything - gulp.task('deploy', () => - run('version', tasks.clean, tasks.js, tasks.sass, tasks.sprite, 'cdn', 'purge', 'demo', 'open'), + gulp.task( + 'deploy', + gulp.series( + 'version', + tasks.clean, + gulp.parallel(tasks.js, tasks.sass, tasks.sprite), + 'cdn', + 'demo', + 'purge', + 'open', + ), ); } |