Skip to content

Commit de02655

Browse files
committed
fix(plugin-axe): update plugin name references in README
1 parent b1fdd83 commit de02655

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

packages/plugin-axe/README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# @code-pushup/plugin-axe
1+
# @code-pushup/axe-plugin
2+
3+
[![npm](https://img.shields.io/npm/v/%40code-pushup%2Faxe-plugin.svg)](https://www.npmjs.com/package/@code-pushup/axe-plugin)
4+
[![downloads](https://img.shields.io/npm/dm/%40code-pushup%2Faxe-plugin)](https://npmtrends.com/@code-pushup/axe-plugin)
5+
[![dependencies](https://img.shields.io/librariesio/release/npm/%40code-pushup/axe-plugin)](https://www.npmjs.com/package/@code-pushup/axe-plugin?activeTab=dependencies)
26

37
🕵️ **Code PushUp plugin for automated accessibility testing with Axe.** 🌐
48

@@ -15,23 +19,23 @@ The plugin runs accessibility audits on web pages using [axe-core](https://githu
1519
2. Install as a dev dependency with your package manager:
1620

1721
```sh
18-
npm install --save-dev @code-pushup/plugin-axe
22+
npm install --save-dev @code-pushup/axe-plugin
1923
```
2024

2125
```sh
22-
yarn add --dev @code-pushup/plugin-axe
26+
yarn add --dev @code-pushup/axe-plugin
2327
```
2428

2529
```sh
26-
pnpm add --save-dev @code-pushup/plugin-axe
30+
pnpm add --save-dev @code-pushup/axe-plugin
2731
```
2832

2933
3. Add this plugin to the `plugins` array in your Code PushUp CLI config file (e.g. `code-pushup.config.ts`).
3034

3135
Pass in the URL you want to test:
3236

3337
```ts
34-
import axePlugin from '@code-pushup/plugin-axe';
38+
import axePlugin from '@code-pushup/axe-plugin';
3539

3640
export default {
3741
// ...

0 commit comments

Comments
 (0)