grunt-sassdoc
Advanced tools
Comparing version 0.1.9 to 0.2.0
{ | ||
"name": "grunt-sassdoc", | ||
"title": "grunt-sassdoc", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"description": "SassDoc grunt task", | ||
@@ -48,4 +48,4 @@ "keywords": [ | ||
"scripts": { | ||
"test": "grunt test_config && grunt test_options" | ||
"test": "grunt test" | ||
} | ||
} |
@@ -45,2 +45,11 @@ # grunt-sassdoc [![npm version](http://img.shields.io/npm/v/grunt-sassdoc.svg?style=flat)](https://www.npmjs.org/package/grunt-sassdoc) [![Build Status: Linux](http://img.shields.io/travis/SassDoc/grunt-sassdoc.svg?style=flat)](https://travis-ci.org/SassDoc/grunt-sassdoc?branch=master) | ||
### verbose | ||
Type: `Boolean` | ||
Default: `false` | ||
Whether to enable SassDoc own logger or not. | ||
#### config | ||
@@ -53,2 +62,3 @@ | ||
#### display.access | ||
@@ -61,2 +71,3 @@ | ||
#### display.alias | ||
@@ -63,0 +74,0 @@ |
@@ -42,2 +42,3 @@ /* | ||
var options = this.options({ | ||
verbose: false, | ||
config: null, | ||
@@ -72,2 +73,7 @@ display: { | ||
// Enable SassDoc logger. | ||
if (options.verbose) { | ||
sassdoc.logger.enabled = true; | ||
} | ||
this.files.forEach(function (filePair) { | ||
@@ -74,0 +80,0 @@ var src = validateSrc(filePair); |
8006
81
155