1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-15 20:35:23 +03:00

Added gulp task to clean nw.js cache folder

This commit is contained in:
Bas Delfos 2017-12-08 13:48:55 +01:00
parent fe3a444c67
commit ecd2e17dc7

View file

@ -122,6 +122,10 @@ gulp.task('clean-release', function () {
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
// run-sequence.
gulp.task('dist', ['clean-dist'], function () {