@code-pushup/axe-plugin 0.87.0 → 0.87.1
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 +9 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
# @code-pushup/plugin
|
|
1
|
+
# @code-pushup/axe-plugin
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@code-pushup/axe-plugin)
|
|
4
|
+
[](https://npmtrends.com/@code-pushup/axe-plugin)
|
|
5
|
+
[](https://www.npmjs.com/package/@code-pushup/axe-plugin?activeTab=dependencies)
|
|
2
6
|
|
|
3
7
|
🕵️ **Code PushUp plugin for automated accessibility testing with Axe.** 🌐
|
|
4
8
|
|
|
@@ -15,15 +19,15 @@ The plugin runs accessibility audits on web pages using [axe-core](https://githu
|
|
|
15
19
|
2. Install as a dev dependency with your package manager:
|
|
16
20
|
|
|
17
21
|
```sh
|
|
18
|
-
npm install --save-dev @code-pushup/plugin
|
|
22
|
+
npm install --save-dev @code-pushup/axe-plugin
|
|
19
23
|
```
|
|
20
24
|
|
|
21
25
|
```sh
|
|
22
|
-
yarn add --dev @code-pushup/plugin
|
|
26
|
+
yarn add --dev @code-pushup/axe-plugin
|
|
23
27
|
```
|
|
24
28
|
|
|
25
29
|
```sh
|
|
26
|
-
pnpm add --save-dev @code-pushup/plugin
|
|
30
|
+
pnpm add --save-dev @code-pushup/axe-plugin
|
|
27
31
|
```
|
|
28
32
|
|
|
29
33
|
3. Add this plugin to the `plugins` array in your Code PushUp CLI config file (e.g. `code-pushup.config.ts`).
|
|
@@ -31,7 +35,7 @@ The plugin runs accessibility audits on web pages using [axe-core](https://githu
|
|
|
31
35
|
Pass in the URL you want to test:
|
|
32
36
|
|
|
33
37
|
```ts
|
|
34
|
-
import axePlugin from '@code-pushup/plugin
|
|
38
|
+
import axePlugin from '@code-pushup/axe-plugin';
|
|
35
39
|
|
|
36
40
|
export default {
|
|
37
41
|
// ...
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-pushup/axe-plugin",
|
|
3
|
-
"version": "0.87.
|
|
3
|
+
"version": "0.87.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Code PushUp plugin for detecting accessibility issues using Axe 🌐",
|
|
6
6
|
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-axe#readme",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"type": "module",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@axe-core/playwright": "^4.11.0",
|
|
45
|
-
"@code-pushup/models": "0.87.
|
|
46
|
-
"@code-pushup/utils": "0.87.
|
|
45
|
+
"@code-pushup/models": "0.87.1",
|
|
46
|
+
"@code-pushup/utils": "0.87.1",
|
|
47
47
|
"axe-core": "^4.11.0",
|
|
48
48
|
"playwright-core": "^1.56.1",
|
|
49
49
|
"zod": "^4.1.12"
|