mirror of https://github.com/grpc/grpc-node.git
Fix missing clean deps
This commit is contained in:
parent
2ef046e96f
commit
1b64626cbb
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue