Running gulp sassdoc in verbose mode from inside of parent returns
» Sass sources successfully parsed.
» [WARNING] SassDoc could not find anything to document.
I've tried adding just simple help documentation using three slashes to the top of style.scss and _somePartial.scss, but neither one seems to generate any docs.
I've tried using things like the following for the src:
scss/style.scss
scss/**/*.scss
../**/!node_modules/**/*.scss
Also tried adding .pipe(sassGlob()) prior to .pipe(sassDoc()) which did nothing. Am I missing something obvious?
Current dir structure is:
Running
gulp sassdoc
in verbose mode from inside ofparent
returnsI've tried adding just simple help documentation using three slashes to the top of style.scss and _somePartial.scss, but neither one seems to generate any docs.
I've tried using things like the following for the src:
Also tried adding
.pipe(sassGlob())
prior to.pipe(sassDoc())
which did nothing. Am I missing something obvious?