@d-zero/a11y-check-scenarios 0.3.1 → 0.4.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.
package/dist/scenario.js CHANGED
@@ -134,6 +134,7 @@ export default createScenario((options) => {
134
134
  ];
135
135
  return {
136
136
  modulePath: import.meta.url,
137
+ moduleParams: JSON.stringify(options ?? {}),
137
138
  id: scenarioId,
138
139
  async exec(page, sizeName, logger) {
139
140
  // Wait Scroll End
package/dist/scenario2.js CHANGED
@@ -6,6 +6,7 @@ export default createScenario((options) => {
6
6
  const cache = new Cache(scenarioId, options?.cacheDir);
7
7
  return {
8
8
  modulePath: import.meta.url,
9
+ moduleParams: JSON.stringify(options ?? {}),
9
10
  id: scenarioId,
10
11
  async exec(page, sizeName, logger) {
11
12
  if (options?.cache === false) {
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "@d-zero/a11y-check-scenarios",
3
- "version": "0.3.1",
3
+ "version": "0.4.1",
4
4
  "description": "Accessibility Checker Scenario Collection",
5
5
  "author": "D-ZERO",
6
6
  "license": "MIT",
7
- "private": false,
8
7
  "publishConfig": {
9
8
  "access": "public"
10
9
  },
@@ -24,15 +23,15 @@
24
23
  "clean": "tsc --build --clean"
25
24
  },
26
25
  "dependencies": {
27
- "@d-zero/a11y-check-core": "0.4.0",
28
- "@d-zero/shared": "0.8.0",
26
+ "@d-zero/a11y-check-core": "0.5.1",
27
+ "@d-zero/shared": "0.9.1",
29
28
  "ansi-colors": "4.1.3"
30
29
  },
31
30
  "devDependencies": {
32
- "puppeteer": "24.9.0"
31
+ "puppeteer": "24.10.2"
33
32
  },
34
33
  "peerDependencies": {
35
- "puppeteer": "24.8.2"
34
+ "puppeteer": "24.10.2"
36
35
  },
37
- "gitHead": "4e9cc7b87e0fef91b6f2d4edfb66ca9134b2491b"
36
+ "gitHead": "1218a023e62c79efeece6350d561f2e1906be7ea"
38
37
  }