-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Merge pull request #1403 from dequelabs/release-320
chore: Release axe-core 3.2.0
- Loading branch information
Showing
531 changed files
with
18,206 additions
and
10,058 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
if [ ! -e phantomjs ]; then | ||
# phantomjs cache does not exist, fetch phantomjs | ||
sudo curl --output phantomjs https://s3.amazonaws.com/circle-downloads/phantomjs-2.1.1 | ||
fi | ||
|
||
# move phantomjs to bin | ||
sudo cp -r phantomjs /usr/local/bin/phantomjs | ||
|
||
# update permissions | ||
sudo chmod ugo+x /usr/local/bin/phantomjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
build/tasks/generate-imports.js | ||
!lib/core/imports/index.js | ||
**/node_modules/**/*.js | ||
|
||
build/tasks/aria-supported.js | ||
|
||
doc/api/* | ||
doc/examples/jest_react/*.js | ||
|
||
lib/core/imports/*.js | ||
doc/api/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
# Reference - https://help.github.com/articles/about-code-owners/ | ||
|
||
# Complete repo | ||
* @dequelabs/axe-codeowners | ||
|
||
# Localisation | ||
locales/ja.json @mlca11y/mlca11y @dequelabs/axe-codeowners | ||
|
||
# Core features | ||
lib/core/* @stephenmathieson @dequelabs/axe-codeowners | ||
test/core/* @stephenmathieson @dequelabs/axe-codeowners | ||
build/* @stephenmathieson @dequelabs/axe-codeowners | ||
Gruntfile.js @stephenmathieson @dequelabs/axe-codeowners |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
tmp | ||
dist | ||
# defaults | ||
node_modules | ||
npm-shrinkwrap.json | ||
package-lock.json | ||
.DS_Store | ||
.vscode | ||
|
||
# tmp - `dev` time generated assets | ||
tmp | ||
|
||
# test - runner generated assets | ||
test/*/index.html | ||
test/integration/*/index.html | ||
|
||
# dist | ||
axe.js | ||
axe.*.js | ||
*.tgz | ||
npm-shrinkwrap.json | ||
|
||
|
||
# generated jsdoc api docs | ||
doc/api/* | ||
|
||
# ts generated file | ||
typings/axe-core/axe-core-tests.js | ||
doc/rule-descriptions.*.md | ||
package-lock.json | ||
.DS_Store | ||
!lib/core/imports/index.js | ||
lib/core/imports/*.js | ||
|
||
# running circleci locally to verify build, ignoring relevant files | ||
# if circle and docker is configured locally (copy circle.yml to .circleci/config.yml) - run -> circleci build | ||
.circleci/**/*.* | ||
# doc | ||
doc/rule-descriptions.*.md | ||
|
||
# ignore jsdoc api documentation generated files | ||
doc/api/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "grunt configure && lint-staged" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
Oops, something went wrong.