Skip to content

Commit

Permalink
feat: Update axe-core to v4.8.2 (#835)
Browse files Browse the repository at this point in the history
Co-authored-by: michael-siek <[email protected]>
Co-authored-by: michael-siek <[email protected]>
  • Loading branch information
3 people committed Sep 26, 2023
1 parent aa0ae64 commit 2ac1eaf
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
],
"dependencies": {
"@axe-core/webdriverjs": "^4.7.3",
"axe-core": "^4.7.0",
"axe-core": "^4.8.2",
"chromedriver": "latest",
"colors": "^1.4.0",
"commander": "^9.4.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import colors from 'colors';
import { AxeResults } from 'axe-core';
import type { AxeResults, UnlabelledFrameSelector } from 'axe-core';

export const saveOutcome = (
outcome: AxeResults | AxeResults[],
Expand Down Expand Up @@ -118,7 +118,7 @@ export const splitList = (val: string): string[] => {
};

export const selectorToString = (
selectors: string[],
selectors: UnlabelledFrameSelector,
separator?: string
): string => {
separator = separator || ' ';
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"prepare": "npx playwright install && npm run build"
},
"dependencies": {
"axe-core": "^4.7.0"
"axe-core": "^4.8.2"
},
"devDependencies": {
"@playwright/test": "^1.34.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/puppeteer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"typescript": "^4.8.4"
},
"dependencies": {
"axe-core": "^4.7.0"
"axe-core": "^4.8.2"
},
"peerDependencies": {
"puppeteer": ">=1.10.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"author": "Dylan Barrell ([email protected])",
"license": "MPL-2.0",
"dependencies": {
"axe-core": "^4.7.0",
"axe-core": "^4.8.2",
"requestidlecallback": "^0.3.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/reporter-earl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@types/clone": "^2.1.1",
"@types/jsonld": "github:types/jsonld",
"@types/node": "^18.8.3",
"axe-core": "^4.7.0",
"axe-core": "^4.8.2",
"clone": "^2.1.2",
"cross-env": "^7.0.3",
"jest": "^29.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/webdriverio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"webdriverio"
],
"dependencies": {
"axe-core": "^4.7.0",
"axe-core": "^4.8.2",
"cssesc": "^3.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/webdriverjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"typescript": "^4.8.4"
},
"dependencies": {
"axe-core": "^4.7.0"
"axe-core": "^4.8.2"
},
"peerDependencies": {
"selenium-webdriver": ">3.0.0-beta || >=2.53.1 || >4.0.0-alpha"
Expand Down

0 comments on commit 2ac1eaf

Please sign in to comment.