@d-zero/a11y-check-axe-scenario 0.4.4 → 0.4.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/a11y-check-axe-scenario",
3
- "version": "0.4.4",
3
+ "version": "0.4.6",
4
4
  "description": "Accessibility Checker Axe Scenario",
5
5
  "author": "D-ZERO",
6
6
  "license": "MIT",
@@ -24,17 +24,17 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@axe-core/puppeteer": "4.10.2",
27
- "@d-zero/a11y-check-core": "0.5.4",
27
+ "@d-zero/a11y-check-core": "0.5.6",
28
28
  "@d-zero/db-wcag": "1.0.0-alpha.1",
29
29
  "@d-zero/shared": "0.9.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "axe-core": "4.10.3",
33
- "puppeteer": "24.18.0"
33
+ "puppeteer": "24.23.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "axe-core": "4.10.3",
37
- "puppeteer": "24.18.0"
37
+ "puppeteer": "24.23.0"
38
38
  },
39
- "gitHead": "8081edac801400fed7c0b7ebeccc0ce66ccfe131"
39
+ "gitHead": "85b9a1f15d2db8798cf24a6a3f035cee1db6ba3d"
40
40
  }
@@ -1,10 +0,0 @@
1
- /**
2
- *
3
- * @param {...any} texts
4
- */
5
- export declare function p(...texts: (string | null | undefined)[]): string;
6
- /**
7
- *
8
- * @param {...any} texts
9
- */
10
- export declare function br(...texts: (string | null | undefined)[]): string;
package/dist/pargraph.js DELETED
@@ -1,14 +0,0 @@
1
- /**
2
- *
3
- * @param {...any} texts
4
- */
5
- export function p(...texts) {
6
- return texts.filter(Boolean).join('\n\n');
7
- }
8
- /**
9
- *
10
- * @param {...any} texts
11
- */
12
- export function br(...texts) {
13
- return texts.filter(Boolean).join('\n');
14
- }