mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
switched from grunt to gulp
This commit is contained in:
parent
5cfe2c0186
commit
4d23b2cac3
23 changed files with 861 additions and 561 deletions
9
gulp/clean.js
Normal file
9
gulp/clean.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
var gulp = require('gulp');
|
||||
var clean = require('gulp-clean');
|
||||
|
||||
var paths = require('./paths');
|
||||
|
||||
gulp.task('clean', function () {
|
||||
return gulp.src(paths.dest.root, {read: false})
|
||||
.pipe(clean());
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue