@axe-core/watcher 4.5.0 → 4.5.1-next.3e4fabbd
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/Controller.js.map +1 -1
- package/dist/cypress/cypress.js +3 -2
- package/dist/cypress/cypress.js.map +1 -1
- package/dist/cypressCommands.js +4 -10
- package/dist/cypressCommands.js.map +1 -1
- package/dist/utils/assertVariablesWereWritten.d.ts +1 -1
- package/dist/utils/assertVariablesWereWritten.js +8 -7
- package/dist/utils/assertVariablesWereWritten.js.map +1 -1
- package/dist/utils/mergeChromeArgs.js +6 -5
- package/dist/utils/mergeChromeArgs.js.map +1 -1
- package/dist/utils/readVariables.js +3 -2
- package/dist/utils/readVariables.js.map +1 -1
- package/dist/utils/runExtensionDir.d.ts +43 -0
- package/dist/utils/runExtensionDir.js +86 -0
- package/dist/utils/runExtensionDir.js.map +1 -0
- package/dist/utils/test-constants.d.ts +1 -0
- package/dist/utils/test-constants.js +1 -0
- package/dist/utils/test-constants.js.map +1 -1
- package/dist/utils/writeExtensionManifest.js +2 -2
- package/dist/utils/writeExtensionManifest.js.map +1 -1
- package/dist/utils/writeVariables.js +4 -1
- package/dist/utils/writeVariables.js.map +1 -1
- package/extension/background.js +1 -1
- package/extension/content.js +1 -1
- package/package.json +12 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axe-core/watcher",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1-next.3e4fabbd",
|
|
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": "
|
|
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": "
|
|
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
|
-
"
|
|
91
|
+
"coverage-v8/**"
|
|
93
92
|
],
|
|
94
93
|
"clean": true
|
|
95
94
|
},
|
|
@@ -132,12 +131,12 @@
|
|
|
132
131
|
"@types/express": "^5.0.6",
|
|
133
132
|
"@types/mocha": "^10.0.0",
|
|
134
133
|
"@types/morgan": "^1.9.3",
|
|
135
|
-
"@types/node": "22.20.
|
|
134
|
+
"@types/node": "22.20.1",
|
|
136
135
|
"@types/react": "19",
|
|
137
136
|
"@types/react-dom": "19",
|
|
138
137
|
"@types/selenium-webdriver": "^4.1.15",
|
|
139
138
|
"@types/semver": "^7.5.8",
|
|
140
|
-
"@types/sinon": "^
|
|
139
|
+
"@types/sinon": "^22.0.0",
|
|
141
140
|
"@wdio/types": "^9.0.4",
|
|
142
141
|
"axe-core": "^4.12.1",
|
|
143
142
|
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1",
|
|
@@ -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"
|