mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 13:25:24 +03:00
Added gulp task to clean nw.js cache folder
This commit is contained in:
parent
fe3a444c67
commit
ecd2e17dc7
1 changed files with 4 additions and 0 deletions
|
@ -122,6 +122,10 @@ gulp.task('clean-release', function () {
|
||||||
return del([releaseDir + '**'], { force: true });
|
return del([releaseDir + '**'], { force: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gulp.task('clean-cache', function () {
|
||||||
|
return del(['./cache/**'], { force: true });
|
||||||
|
});
|
||||||
|
|
||||||
// Real work for dist task. Done in another task to call it via
|
// Real work for dist task. Done in another task to call it via
|
||||||
// run-sequence.
|
// run-sequence.
|
||||||
gulp.task('dist', ['clean-dist'], function () {
|
gulp.task('dist', ['clean-dist'], function () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue