axe-core 4.11.0-canary.4bc4fe7 → 4.11.0-canary.50ed174

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,7 +1,7 @@
1
1
  {
2
2
  "name": "axe-core",
3
3
  "description": "Accessibility engine for automated Web UI testing",
4
- "version": "4.11.0-canary.4bc4fe7",
4
+ "version": "4.11.0-canary.50ed174",
5
5
  "license": "MPL-2.0",
6
6
  "engines": {
7
7
  "node": ">=4"
@@ -78,7 +78,7 @@
78
78
  "build": "grunt",
79
79
  "patch": "npx patch-package",
80
80
  "unpatch": "npx patch-package --reverse",
81
- "eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js'",
81
+ "eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js' '.github/bin/*.mjs'",
82
82
  "test": "npm run test:tsc && run-s \"test:unit:* -- {@}\" --",
83
83
  "test:tsc": "tsc",
84
84
  "test:unit": "karma start test/karma.conf.js",
@@ -108,7 +108,6 @@
108
108
  "version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
109
109
  "release": "git fetch origin --tags --force && standard-version -a",
110
110
  "rule-gen": "node build/rule-generator",
111
- "next-release": "standard-version --scripts.prebump=./build/next-version.js --skip.commit=true --skip.tag=true",
112
111
  "sri-update": "grunt build && node build/sri-update && git add sri-history.json",
113
112
  "sri-validate": "node build/sri-update --validate",
114
113
  "fmt": "prettier --write .",
@@ -194,7 +193,7 @@
194
193
  "*.{md,json,ts,html}": [
195
194
  "prettier --write"
196
195
  ],
197
- "*.js": [
196
+ "*.{js,mjs}": [
198
197
  "prettier --write",
199
198
  "eslint --fix"
200
199
  ]