Skip to content

Commit b235a9b

Browse files
The values are in the view!
1 parent 0b9d443 commit b235a9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/sassdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ var config = cfg(options['--config'], {
5050
});
5151

5252
// Perform a sass to scss syntax convertion.
53-
if (config.sassConvert) {
53+
if (config.view.sassConvert) {
5454
sassdoc = require('../src/convert')(sassdoc);
5555
}
5656

5757
// Run update notifier if not explicitely disabled
58-
if (!config.noUpdateNotifier) {
58+
if (!config.view.noUpdateNotifier) {
5959
var notifier = require('update-notifier')({
6060
packageName: pkg.name,
6161
packageVersion: pkg.version,

src/api.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ exports = module.exports = {
2828
}
2929

3030
return safeWipe(destination, {
31-
interactive: config.interactive || false,
31+
interactive: config.view.interactive || false,
3232
parent: source,
3333
silent: true,
34-
force: config.force
34+
force: config.view.force
3535
})
3636
.then(function () {
3737
return fs.folder.create(destination);

0 commit comments

Comments
 (0)