Gulp: how to delete a folder?

前端 未结 3 2219
不知归路
不知归路 2021-02-13 10:10

I use del package to delete folder:

gulp.task(\'clean\', function(){
    return del(\'dist/**/*\', {force:true});
});

But if there are many sub

3条回答
  •  无人及你
    2021-02-13 10:40

    According to the documentation : The glob pattern ** matches all children and the parent. You have to explicitly ignore the parent directories too

    gulp.task('clean', function(){
         return del(['dist/**', '!dist'], {force:true});
    });
    

    More info available here : del documentation

提交回复
热议问题