1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/frontend/gulp/clean.js

9 lines
166 B
JavaScript
Raw Normal View History

2018-11-23 08:04:42 +01:00
const gulp = require('gulp');
const del = require('del');
const paths = require('./helpers/paths');
gulp.task('clean', () => {
return del([paths.dest.root]);
});