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
2017-09-05 23:00:26 -04:00

8 lines
166 B
JavaScript

const gulp = require('gulp');
const del = require('del');
const paths = require('./helpers/paths');
gulp.task('clean', () => {
return del([paths.dest.root]);
});