pa11y-ci-reporter-runner 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -24,6 +24,8 @@ Pa11y CI Reporter Runner exports a factory function that creates a reporter runn
24
24
  Pa11y CI Reporter Runner emulates calls from Pa11y CI to the given reporter for the given results file. There are five distinct states for the runner, as shown below:
25
25
 
26
26
  ```mermaid
27
+ %% It's unfortunate that mermaid charts don't render on npmjs.com,
28
+ %% see the README in the repository to view the flowchart
27
29
  flowchart LR;
28
30
  init-->beforeAll;
29
31
  beforeAll-->beginUrl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pa11y-ci-reporter-runner",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
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": {
@@ -44,6 +44,6 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "lodash": "^4.17.21",
47
- "xstate": "^4.30.3"
47
+ "xstate": "^4.30.5"
48
48
  }
49
49
  }