aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-11-08 23:34:10 +1100
committerSam Potts <sam@potts.es>2018-11-08 23:34:10 +1100
commit2c8a337f265f3f84133bc674f3836802588c0c13 (patch)
treec121595948b254fc58e26c681c7f2e4f0e542e24 /gulpfile.js
parentc24e52d97d691a9056c68acff1f6bb6a7417e2af (diff)
downloadplyr-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.js13
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',
+ ),
);
}