-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into api-extractor
* main: (43 commits) Update lockfile Update `normalize-url` Update README.md Add `archive` option in `Scraper#scrape()` (#840) Pass roles as part of diagnostics in SIA-R55 and SIA-R56 (#838) Update Node.js versions for workflows Fix listing of contrast ratios SIA R55: clean up unused imports (#836) Implement SIA-R55 (#835) Consider element with `height` or `width` of 0 as invisible unless the text overflows (#827) Formatting v0.19.0 Update changelog Develop branch (#771) v0.18.0 Update changelog Add missing annotations Deduplicate dependencies Update dependencies Bump browserslist from 4.16.3 to 4.16.6 (#814) ...
- Loading branch information
Showing
332 changed files
with
13,689 additions
and
8,006 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,14 +12,16 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
node: [12, 14] | ||
node: [14, 16] | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
NODE_OPTIONS: "--max-old-space-size=4096" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- uses: actions/[email protected].4 | ||
- uses: actions/[email protected].6 | ||
with: | ||
path: .yarn/cache | ||
key: yarn-${{ hashFiles('yarn.lock') }} | ||
|
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 |
---|---|---|
|
@@ -8,11 +8,11 @@ jobs: | |
name: Publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/[email protected] | ||
with: | ||
node-version: 14 | ||
- uses: actions/[email protected].4 | ||
node-version: 16 | ||
- uses: actions/[email protected].6 | ||
with: | ||
path: .yarn/cache | ||
key: yarn-${{ hashFiles('yarn.lock') }} | ||
|
@@ -28,7 +28,7 @@ jobs: | |
--no-private | ||
--topological | ||
npm publish --tolerate-republish | ||
- uses: actions/create-release@v1 | ||
- uses: actions/create-release@v1.1.4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
|
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 |
---|---|---|
|
@@ -13,11 +13,11 @@ jobs: | |
name: Analyze | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/[email protected] | ||
with: | ||
node-version: 14 | ||
- uses: actions/[email protected].4 | ||
node-version: 16 | ||
- uses: actions/[email protected].6 | ||
with: | ||
path: .yarn/cache | ||
key: yarn-${{ hashFiles('yarn.lock') }} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -27,10 +27,10 @@ | |
"@types/node": "^14.14.31", | ||
"async": "^3.2.0", | ||
"axios": "^0.21.1", | ||
"execa": "^5.0.0", | ||
"execa": "^5.1.1", | ||
"minimist": "^1.2.5", | ||
"prettier": "^2.2.1", | ||
"typescript": "^4.2.3" | ||
"prettier": "^2.3.1", | ||
"typescript": "^4.3.2" | ||
}, | ||
"resolutions": { | ||
"@microsoft/api-documenter": "patch:@microsoft/[email protected]#.yarn/patches/api-documenter.patch" | ||
|
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
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
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
Oops, something went wrong.