@axe-core/watcher 4.5.0-rc.06f7d2a5 → 4.5.1-rc.a034129e

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": "@axe-core/watcher",
3
- "version": "4.5.0-rc.06f7d2a5",
3
+ "version": "4.5.1-rc.a034129e",
4
4
  "description": "",
5
5
  "license": "UNLICENSED",
6
6
  "exports": {
@@ -51,7 +51,7 @@
51
51
  "EXTENSION-LICENSES-3RD-PARTY.md"
52
52
  ],
53
53
  "engines": {
54
- "node": "^20.18.1 || ^22.11.0 || ^24.11.0"
54
+ "node": ">=22.11.0"
55
55
  },
56
56
  "wireit": {
57
57
  "build": {
@@ -66,12 +66,8 @@
66
66
  "dist/**"
67
67
  ]
68
68
  },
69
- "test": {
70
- "command": "mocha 'src/**/*.test.ts' --exit",
71
- "output": []
72
- },
73
69
  "test:e2e": {
74
- "command": "mocha 'e2e/*.test.ts'",
70
+ "command": "mocha 'e2e/*.test.ts' && mocha 'e2e/puppeteer/**/*.test.ts'",
75
71
  "dependencies": [
76
72
  "copy-extension"
77
73
  ],
@@ -86,10 +82,13 @@
86
82
  "service": true
87
83
  },
88
84
  "coverage": {
89
- "command": "nyc pnpm test",
85
+ "command": "NODE_V8_COVERAGE=\"$PWD/coverage-v8\" mocha 'e2e/*.test.ts' && NODE_V8_COVERAGE=\"$PWD/coverage-v8\" mocha 'e2e/puppeteer/**/*.test.ts' && pnpm run coverage:report",
86
+ "dependencies": [
87
+ "copy-extension"
88
+ ],
90
89
  "output": [
91
90
  "coverage/**",
92
- ".nyc_output/**"
91
+ "coverage-v8/**"
93
92
  ],
94
93
  "clean": true
95
94
  },
@@ -148,8 +147,8 @@
148
147
  "express": "^5.2.1",
149
148
  "jsdom": "^29.0.1",
150
149
  "mocha": "^11.0.1",
150
+ "monocart-coverage-reports": "^2.12.0",
151
151
  "morgan": "^1.10.0",
152
- "nyc": "^18.0.0",
153
152
  "playwright-core": "^1.45.0",
154
153
  "puppeteer": "^25.1.0",
155
154
  "react": "^19.1.0",
@@ -193,11 +192,11 @@
193
192
  },
194
193
  "scripts": {
195
194
  "build": "wireit",
196
- "test": "wireit",
197
195
  "test:e2e": "wireit",
198
196
  "test:proxy": "wireit",
199
197
  "serve:e2e": "wireit",
200
198
  "coverage": "wireit",
199
+ "coverage:report": "node scripts/pruneV8Coverage.mjs coverage-v8 && node scripts/coverageReport.mjs coverage-v8",
201
200
  "copy-extension-license-file": "wireit",
202
201
  "copy-extension": "wireit",
203
202
  "dev": "pnpm run build --watch"