pa11y-ci-reporter-runner 2.0.1 → 2.0.2

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.
@@ -19,6 +19,10 @@ const pa11yciMachine = createMachine(
19
19
  urlIndex: 0,
20
20
  urls: []
21
21
  },
22
+ // Opting in for v4, will be default in xstate v5
23
+ predictableActionArguments: true,
24
+ // Opting in for v4, will be default in xstate v5
25
+ preserveActionOrder: true,
22
26
  states: {
23
27
  init: {
24
28
  entry: 'setInitialUrlIndex',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pa11y-ci-reporter-runner",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
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": "^15.0.0",
42
- "eslint": "^8.21.0",
43
- "jest": "^28.1.3",
44
- "jest-junit": "^14.0.0",
45
- "markdownlint-cli": "^0.32.1",
46
- "pa11y-ci-reporter-cli-summary": "^2.0.0",
41
+ "@aarongoldenthal/eslint-config-standard": "^16.0.1",
42
+ "eslint": "^8.23.0",
43
+ "jest": "^29.0.1",
44
+ "jest-junit": "^14.0.1",
45
+ "markdownlint-cli": "^0.32.2",
46
+ "pa11y-ci-reporter-cli-summary": "^2.0.1",
47
47
  "prettier": "^2.7.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "lodash": "^4.17.21",
51
- "xstate": "^4.33.0"
51
+ "xstate": "^4.33.5"
52
52
  }
53
53
  }