1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 10:51:48 +00:00
Radarr/frontend/gulp/clean.js

9 lines
166 B
JavaScript
Raw Normal View History

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