pa11y-ci-reporter-runner 2.0.3 → 2.0.4

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.
@@ -7,10 +7,10 @@ const noop = () => {};
7
7
 
8
8
  const loadReporter = (reporterName) => {
9
9
  try {
10
- // eslint-disable-next-line node/global-require
10
+ // eslint-disable-next-line n/global-require
11
11
  return require(reporterName);
12
12
  } catch {
13
- // eslint-disable-next-line node/global-require
13
+ // eslint-disable-next-line n/global-require
14
14
  return require(path.resolve(process.cwd(), reporterName));
15
15
  }
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pa11y-ci-reporter-runner",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Pa11y CI Reporter Runner is designed to facilitate testing of Pa11y CI reporters. Given a Pa11y CI JSON results file and optional configuration it simulates the Pa11y CI calls to the reporter.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -38,16 +38,16 @@
38
38
  },
39
39
  "homepage": "https://gitlab.com/gitlab-ci-utils/pa11y-ci-reporter-runner",
40
40
  "devDependencies": {
41
- "@aarongoldenthal/eslint-config-standard": "^17.0.1",
42
- "eslint": "^8.27.0",
43
- "jest": "^29.2.2",
44
- "jest-junit": "^14.0.1",
41
+ "@aarongoldenthal/eslint-config-standard": "^19.0.1",
42
+ "eslint": "^8.30.0",
43
+ "jest": "^29.3.1",
44
+ "jest-junit": "^15.0.0",
45
45
  "markdownlint-cli": "^0.32.2",
46
46
  "pa11y-ci-reporter-cli-summary": "^2.0.2",
47
- "prettier": "^2.7.1"
47
+ "prettier": "^2.8.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "lodash": "^4.17.21",
51
- "xstate": "^4.34.0"
51
+ "xstate": "^4.35.1"
52
52
  }
53
53
  }