JSPM

gulp-arialinter

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q22712F
  • License MIT

Gulp plugin for the accessibility tool AriaLinter

Package Exports

  • gulp-arialinter

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-arialinter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-arialinter

Gulp plugin for the accessibility tool AriaLinter

Build Status

Install

Install with npm

npm install gulp-arialinter --save-dev

Example

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

gulp.task('default', function () {
    gulp.src('examples/**/*.html')
      .pipe(arialinter({
        level: 'AA'
      }))
      .pipe(gulp.dest('dist'));
});

API

arialinter(options)

See the arialinter options.

License

MIT @Charca