PhilJ / gulp-kss

Gulp plugin for KSS (Knyle Style Sheets) documentation generation
50 stars 34 forks source link

Do not generate docs #22

Closed tenhobi closed 4 years ago

tenhobi commented 9 years ago

Hello,

I use this code (bellow) in my gulpfile.

var kss = require('gulp-kss');

gulp.task('kss', function() {
    gulp.src(config.sass.src)
        .pipe(kss({
            overview: __dirname + '/sass/styleguide.md'
        }))
        .pipe(gulp.dest('styleguide/'));
});

config.sass.src variable contains './src/sass/**/*.scss'

And this will generate me only styleguide/public/ and files as on the picture. screenshot_1

What I do wrong? I want to have a docs! :smile_cat: