File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
var gulp = require ( 'gulp' ) ;
2
- var rimraf = require ( 'gulp-rimraf ' ) ;
2
+ var del = require ( 'del ' ) ;
3
3
4
4
var paths = require ( './paths' ) ;
5
5
6
- gulp . task ( 'clean' , function ( ) {
7
- return gulp . src ( paths . dest . root , { read : false } )
8
- . pipe ( rimraf ( ) ) ;
6
+ gulp . task ( 'clean' , function ( cb ) {
7
+ del ( [ paths . dest . root ] , cb ) ;
9
8
} ) ;
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " NzbDrone " ,
2
+ "name" : " Sonarr " ,
3
3
"version" : " 0.0.0" ,
4
- "description" : " NZBDrone " ,
4
+ "description" : " Sonarr " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
7
"preinstall" : " "
8
8
},
9
9
"repository" : {
10
10
"type" : " git" ,
11
- "url" : " git://github.com/NzbDrone/NzbDrone .git"
11
+ "url" : " git://github.com/Sonarr/Sonarr .git"
12
12
},
13
13
"author" : " " ,
14
14
"license" : " BSD" ,
18
18
"fs-extra" : " 0.12.0" ,
19
19
"gulp" : " 3.8.10" ,
20
20
"gulp-cached" : " 1.0.1" ,
21
- "gulp-rimraf " : " 0.1.1 " ,
21
+ "del " : " 0.1.3 " ,
22
22
"gulp-concat" : " 2.4.2" ,
23
23
"gulp-declare" : " 0.3.0" ,
24
24
"gulp-handlebars" : " 2.2.0" ,
You can’t perform that action at this time.
0 commit comments