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
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