Fix missing clean deps

This commit is contained in:
murgatroid99 2019-04-24 17:06:23 -07:00
parent 2ef046e96f
commit 1b64626cbb
2 changed files with 6 additions and 2 deletions

View File

@ -47,7 +47,9 @@ const install = () => execNpmVerb('install', '--unsafe-perm');
*/
const lint = () => execNpmCommand('check');
const clean = () => execNpmCommand('clean');
const cleanFiles = () => execNpmCommand('clean');
const clean = gulp.series(install, cleanFiles);
const cleanAll = gulp.parallel(clean);

View File

@ -43,7 +43,9 @@ const install = () => execNpmVerb('install', '--unsafe-perm');
*/
const lint = () => execNpmCommand('check');
const clean = () => execNpmCommand('clean');
const cleanFiles = () => execNpmCommand('clean');
const clean = gulp.series(install, cleanFiles);
const cleanAll = gulp.parallel(clean);