Skip to content

Commit 2fea70c

Browse files
authored
chore: upgrade all deps and fix the build (#817)
* chore: upgrade all deps and fix the build * chore: make pull builds only run for releasable branches
1 parent c9917a3 commit 2fea70c

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

.github/workflows/validate.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
name: validate
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
[
6+
'+([0-9])?(.{+([0-9]),x}).x',
7+
'master',
8+
'next',
9+
'next-major',
10+
'beta',
11+
'alpha',
12+
]
13+
pull_request: {}
314
jobs:
415
main:
516
strategy:

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,24 @@
3939
],
4040
"dependencies": {
4141
"@babel/code-frame": "^7.10.4",
42-
"@babel/runtime": "^7.10.3",
42+
"@babel/runtime": "^7.12.5",
4343
"@types/aria-query": "^4.2.0",
4444
"aria-query": "^4.2.2",
4545
"chalk": "^4.1.0",
46-
"dom-accessibility-api": "^0.5.1",
46+
"dom-accessibility-api": "^0.5.4",
4747
"lz-string": "^1.4.4",
48-
"pretty-format": "^26.4.2"
48+
"pretty-format": "^26.6.2"
4949
},
5050
"devDependencies": {
51-
"@testing-library/jest-dom": "^5.10.1",
52-
"dtslint": "^3.6.12",
51+
"@testing-library/jest-dom": "^5.11.5",
52+
"@types/estree": "0.0.45",
53+
"dtslint": "^4.0.5",
5354
"jest-in-case": "^1.0.2",
5455
"jest-serializer-ansi": "^1.0.3",
5556
"jest-watch-select-projects": "^2.0.0",
56-
"jsdom": "^16.2.2",
57-
"kcd-scripts": "^6.2.3",
58-
"typescript": "^3.9.5"
57+
"jsdom": "^16.4.0",
58+
"kcd-scripts": "^6.7.0",
59+
"typescript": "^4.0.5"
5960
},
6061
"eslintConfig": {
6162
"extends": "./node_modules/kcd-scripts/eslint.js",

types/tslint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": ["dtslint/dtslint.json"],
33
"rules": {
4+
"no-redundant-jsdoc": false,
45
"no-useless-files": false,
56
"no-relative-import-in-test": false,
67
"semicolon": false,

0 commit comments

Comments
 (0)