@axe-core/reporter-earl 4.4.2-alpha.258 → 4.4.3-alpha.262

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +17 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.4.2](https://github.com/dequelabs/axe-core-npm/compare/v4.1.1...v4.4.2) (2022-03-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli,reporter-earl,react:** use correct version of axe-core ([#378](https://github.com/dequelabs/axe-core-npm/issues/378)) ([0c7d050](https://github.com/dequelabs/axe-core-npm/commit/0c7d0506b7d397df3c96414fc37a408e90fe9a9c))
12
+ * update axe-core to 4.2.1 ([#254](https://github.com/dequelabs/axe-core-npm/issues/254)) ([9d90185](https://github.com/dequelabs/axe-core-npm/commit/9d9018525a4d799f6d763d0329f05ccbfd20dbe4))
13
+
14
+
15
+ ### Features
16
+
17
+ * update `axe-core@4.2.2` ([#263](https://github.com/dequelabs/axe-core-npm/issues/263)) ([8c609e1](https://github.com/dequelabs/axe-core-npm/commit/8c609e1e3580a63f8697ca94e146b0e2ed28e579))
18
+ * update axe-core to 4.2.0 ([#240](https://github.com/dequelabs/axe-core-npm/issues/240)) ([4e8f7fe](https://github.com/dequelabs/axe-core-npm/commit/4e8f7fee9db09fb56f91ea34f9984be66a29033e))
19
+ * update to use `axe-core@4.2.3` ([#280](https://github.com/dequelabs/axe-core-npm/issues/280)) ([8aebba5](https://github.com/dequelabs/axe-core-npm/commit/8aebba5c6069ca047f649446e072259c069c9a22))
20
+ * upgrade axe-core to 4.4.1 ([#441](https://github.com/dequelabs/axe-core-npm/issues/441)) ([765c81a](https://github.com/dequelabs/axe-core-npm/commit/765c81a2ae63e8c72ec086b86174a5c5f343ea9b))
21
+
22
+
23
+
24
+
25
+
6
26
  ## [4.4.1](https://github.com/dequelabs/axe-core-npm/compare/v4.1.1...v4.4.1) (2022-02-15)
7
27
 
8
28
 
package/README.md CHANGED
@@ -16,6 +16,23 @@ npm install @axe-core/reporter-earl
16
16
 
17
17
  The EARL reporter can be passed to axe, either as part of configuration or as part of the run:
18
18
 
19
+ CommonJS Require Syntax:
20
+
21
+ ```js
22
+ const reporter = require('@axe-core/reporter-earl').default;
23
+ // Define the reporter through axe.configure
24
+ axe.configure({ reporter });
25
+ axe.run().then(earlResults => console.log(earlResults));
26
+ ```
27
+
28
+ ```js
29
+ const reporter = require('@axe-core/reporter-earl').default;
30
+ // Use the reporter in a single axe.run call
31
+ axe.run({ reporter }).then(earlResults => console.log(earlResults));
32
+ ```
33
+
34
+ ES6 Import Syntax:
35
+
19
36
  ```js
20
37
  import reporter from '@axe-core/reporter-earl';
21
38
  // Define the reporter through axe.configure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axe-core/reporter-earl",
3
- "version": "4.4.2-alpha.258+8307094",
3
+ "version": "4.4.3-alpha.262+3ac892a",
4
4
  "description": "A EARL+JSON-LD reporter for axe-core",
5
5
  "main": "dist/axeReporterEarl.js",
6
6
  "scripts": {
@@ -42,5 +42,5 @@
42
42
  "ts-node": "^7.0.1",
43
43
  "typescript": "^3.9.10"
44
44
  },
45
- "gitHead": "8307094fbbc51b11e88b9dfe0b68b4bdcb765932"
45
+ "gitHead": "3ac892a6ac1ec6c9de258493eda764f9031522e2"
46
46
  }