File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ var config = cfg(options['--config'], {
50
50
} ) ;
51
51
52
52
// Perform a sass to scss syntax convertion.
53
- if ( config . sassConvert ) {
53
+ if ( config . view . sassConvert ) {
54
54
sassdoc = require ( '../src/convert' ) ( sassdoc ) ;
55
55
}
56
56
57
57
// Run update notifier if not explicitely disabled
58
- if ( ! config . noUpdateNotifier ) {
58
+ if ( ! config . view . noUpdateNotifier ) {
59
59
var notifier = require ( 'update-notifier' ) ( {
60
60
packageName : pkg . name ,
61
61
packageVersion : pkg . version ,
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ exports = module.exports = {
28
28
}
29
29
30
30
return safeWipe ( destination , {
31
- interactive : config . interactive || false ,
31
+ interactive : config . view . interactive || false ,
32
32
parent : source ,
33
33
silent : true ,
34
- force : config . force
34
+ force : config . view . force
35
35
} )
36
36
. then ( function ( ) {
37
37
return fs . folder . create ( destination ) ;
You can’t perform that action at this time.
0 commit comments