Skip to content

chore: upgrade all deps and fix the build #817

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
name: validate
on: [push, pull_request]
on:
push:
branches:
[
'+([0-9])?(.{+([0-9]),x}).x',
'master',
'next',
'next-major',
'beta',
'alpha',
]
pull_request: {}
jobs:
main:
strategy:
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,24 @@
],
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.10.3",
"@babel/runtime": "^7.12.5",
"@types/aria-query": "^4.2.0",
"aria-query": "^4.2.2",
"chalk": "^4.1.0",
"dom-accessibility-api": "^0.5.1",
"dom-accessibility-api": "^0.5.4",
"lz-string": "^1.4.4",
"pretty-format": "^26.4.2"
"pretty-format": "^26.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
"dtslint": "^3.6.12",
"@testing-library/jest-dom": "^5.11.5",
"@types/estree": "0.0.45",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is added temporarily to avoid the deduping issues. Can be removed when this is resolved: rollup/plugins#639

"dtslint": "^4.0.5",
"jest-in-case": "^1.0.2",
"jest-serializer-ansi": "^1.0.3",
"jest-watch-select-projects": "^2.0.0",
"jsdom": "^16.2.2",
"kcd-scripts": "^6.2.3",
"typescript": "^3.9.5"
"jsdom": "^16.4.0",
"kcd-scripts": "^6.7.0",
"typescript": "^4.0.5"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
Expand Down
1 change: 1 addition & 0 deletions types/tslint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": ["dtslint/dtslint.json"],
"rules": {
"no-redundant-jsdoc": false,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the latest version of dtslint, this fails on our @deprecated annotations.

"no-useless-files": false,
"no-relative-import-in-test": false,
"semicolon": false,
Expand Down