@caweb/a11y-webpack-plugin 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
This is a Webpack Plugin that utilizes the [IBM Accessibility Checker](https://www.npmjs.com/package/accessibility-checker0) module to perform integrated accessibility testing.
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
<pre>npm install --save-dev @caweb/a11y-webpack-plugin</pre>
|
|
5
|
+
|
|
6
|
+
## Get Started
|
|
7
|
+
In your Webpack configuration simply add the plugin to your existing plugin array.
|
|
8
|
+
|
|
9
|
+
<pre>
|
|
10
|
+
import A11yPlugin from '@caweb/a11y-webpack-plugin';
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
plugins: [
|
|
14
|
+
new A11yPlugin()
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
</pre>
|
|
18
|
+
|
|
19
|
+
## Options
|