Skip to content

Commit 69e842f

Browse files
committed
feat(workflows): try updating all deps
1 parent 80fb08f commit 69e842f

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/update-core-deps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
with:
1717
node-version: '15'
1818

19-
- run: npm ci
20-
- id: run-update
21-
run: npm i @webref/idl@latest @webref/css@latest @mdn/browser-compat-data@latest
19+
- run: npm i -g npm-check-updates
20+
- run: ncu -u
21+
- run: npm i
2222
- run: npm run build && npm run baseline-accept
2323
- id: git-diff
2424
run: git diff --quiet HEAD baselines

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,27 +32,27 @@
3232
"license": "Apache-2.0",
3333
"type": "module",
3434
"devDependencies": {
35-
"@mdn/browser-compat-data": "^3.3.4",
35+
"@mdn/browser-compat-data": "3.3.4",
3636
"@types/jsdom": "^16.2.10",
37-
"@types/node": "^15.0.2",
37+
"@types/node": "^15.6.0",
3838
"@types/node-fetch": "^2.5.10",
3939
"@types/webidl2": "^23.13.5",
40-
"@typescript-eslint/eslint-plugin": "^4.22.1",
41-
"@typescript-eslint/parser": "^4.22.1",
40+
"@typescript-eslint/eslint-plugin": "^4.24.0",
41+
"@typescript-eslint/parser": "^4.24.0",
4242
"@webref/css": "^1.0.1",
4343
"@webref/idl": "^2.1.4",
44-
"browser-specs": "^1.37.0",
44+
"browser-specs": "^1.38.0",
4545
"cpx2": "^3.0.0",
46-
"eslint": "^7.25.0",
46+
"eslint": "^7.27.0",
4747
"eslint-config-prettier": "^8.3.0",
4848
"eslint-plugin-prettier": "^3.4.0",
4949
"jsdom": "^16.5.3",
5050
"node-fetch": "^2.6.1",
51-
"prettier": "^2.2.1",
51+
"prettier": "^2.3.0",
5252
"print-diff": "^1.0.0",
5353
"styleless-innertext": "^1.1.3",
5454
"typescript": "^4.3.0-dev.20210430",
55-
"webidl2": "^24.0.1"
55+
"webidl2": "^24.1.1"
5656
},
5757
"files": [
5858
"baselines/*"

src/build/bcd/keep-alive.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ export const forceKeepAlive: Record<string, string[]> = {
123123
"MODIFICATION",
124124
"REMOVAL",
125125
],
126-
OfflineAudioContext: ["resume"],
127126
PaymentRequest: ["shippingAddress"],
128127
PictureInPictureWindow: [
129128
"requestPictureInPicture",
@@ -132,7 +131,6 @@ export const forceKeepAlive: Record<string, string[]> = {
132131
"autoPictureInPicture",
133132
"disablePictureInPicture",
134133
],
135-
ReadableStreamGenericReader: ["closed", "cancel"],
136134
Request: ["keepalive"],
137135
ResizeObserverSize: ["blockSize", "inlineSize"],
138136
RTCDtlsTransport: ["onstatechange", "state"],

0 commit comments

Comments
 (0)