- commit
- c1d641f424168f3b2bf40a6647dc93f38b9a0709
- parent
- 433df682c3fb44a691f1841ef27500863060e00e
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-06-07 17:06
update tools
Diffstat
| M | package.json | 6 | +++--- |
| M | src/babel.js | 6 | +++--- |
2 files changed, 6 insertions, 6 deletions
diff --git a/package.json b/package.json
@@ -4,9 +4,9 @@ 4 4 "description": "compare different implementations of accname", 5 5 "devDependencies": { 6 6 "accessibility-developer-tools": "2.12.0",7 -1 "aria-api": "0.4.6",8 -1 "axe-core": "4.6.2",9 -1 "dom-accessibility-api": "0.5.15",-1 7 "aria-api": "0.5.0", -1 8 "axe-core": "4.7.2", -1 9 "dom-accessibility-api": "0.6.0", 10 10 "nyc": "^15.1.0", 11 11 "w3c-alternative-text-computation": "github:accdc/w3c-alternative-text-computation" 12 12 },
diff --git a/src/babel.js b/src/babel.js
@@ -17,7 +17,7 @@ var ex = function(fn, args, _this) {
17 17 };
18 18
19 19 var implementations = [{
20 -1 name: 'aria-api (0.4.6)',
-1 20 name: 'aria-api (0.5.0)',
21 21 url: 'https://github.com/xi/aria-api',
22 22 fn: function(el) {
23 23 return {
@@ -31,7 +31,7 @@ var implementations = [{
31 31 url: 'https://github.com/accdc/w3c-alternative-text-computation',
32 32 fn: accdc.calcNames,
33 33 }, {
34 -1 name: 'dom-accessibility-api (0.5.15)',
-1 34 name: 'dom-accessibility-api (0.6.0)',
35 35 url: 'https://github.com/eps1lon/dom-accessibility-api/',
36 36 fn: function(el) {
37 37 return {
@@ -41,7 +41,7 @@ var implementations = [{
41 41 };
42 42 },
43 43 }, {
44 -1 name: 'axe (4.6.2)',
-1 44 name: 'axe (4.7.2)',
45 45 url: 'https://github.com/dequelabs/axe-core',
46 46 fn: function(el) {
47 47 axe._tree = axe.utils.getFlattenedTree(document.body);