yargalot / gulp-accessibility

Gulp plugin for AccessSniff
48 stars 12 forks source link

Output to cli #13

Closed lukasoppermann closed 2 years ago

lukasoppermann commented 8 years ago

Hey, can I instead of report to a file, just report to the cli? Did I miss this option?

dahei commented 8 years ago

@lukasoppermann

Just use AccessSniff directly

https://github.com/yargalot/AccessSniff#cli

JCron245 commented 8 years ago
gulp.task('wcag_test', function() {
  return gulp.src(html_paths)
    .pipe(access({
      force: true
    }))
    .on('error', console.log);
});

If you setup your gulp task like this it will only output to the CLI