1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-23 16:23:13 +00:00
Lidarr/frontend/gulp/clean.js

9 lines
166 B
JavaScript
Raw Normal View History

2017-09-04 02:20:56 +00:00
const gulp = require('gulp');
const del = require('del');
const paths = require('./helpers/paths');
gulp.task('clean', () => {
return del([paths.dest.root]);
});