Skip to content

Commit b206853

Browse files
authored
Merge pull request #3537 from jerch/update_deps
upgrade dev deps
2 parents 07ba3dc + b29d7d2 commit b206853

File tree

4 files changed

+907
-1138
lines changed

4 files changed

+907
-1138
lines changed

addons/xterm-addon-ligatures/src/font.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default async function load(fontFamily: string, cacheSize: number): Promi
4343
if (status && status.state !== 'granted') {
4444
throw new Error('Permission to access local fonts not granted.');
4545
}
46-
} catch (err) {
46+
} catch (err: any) {
4747
// A `TypeError` indicates the 'local-fonts'
4848
// permission is not yet implemented, so
4949
// only `throw` if this is _not_ the problem.
@@ -61,7 +61,7 @@ export default async function load(fontFamily: string, cacheSize: number): Promi
6161
fonts[metadata.family].push(metadata);
6262
}
6363
fontsPromise = Promise.resolve(fonts);
64-
} catch (err) {
64+
} catch (err: any) {
6565
console.error(err.name, err.message);
6666
}
6767
}

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- job: Windows
6161
pool:
62-
vmImage: 'vs2017-win2016'
62+
vmImage: 'windows-2019'
6363
steps:
6464
- task: NodeTool@0
6565
inputs:
@@ -124,7 +124,7 @@ jobs:
124124

125125
- job: Windows_IntegrationTests
126126
pool:
127-
vmImage: 'vs2017-win2016'
127+
vmImage: 'windows-2019'
128128
steps:
129129
- task: NodeTool@0
130130
inputs:

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -37,39 +37,39 @@
3737
"vtfeatures": "node bin/extract_vtfeatures.js src/**/*.ts src/*.ts"
3838
},
3939
"devDependencies": {
40-
"@types/chai": "^4.2.18",
41-
"@types/debug": "^4.1.5",
40+
"@types/chai": "^4.2.22",
41+
"@types/debug": "^4.1.7",
4242
"@types/deep-equal": "^1.0.1",
43-
"@types/glob": "^7.1.3",
44-
"@types/jsdom": "^16.2.10",
45-
"@types/mocha": "^8.2.2",
43+
"@types/glob": "^7.2.0",
44+
"@types/jsdom": "^16.2.13",
45+
"@types/mocha": "^9.0.0",
4646
"@types/node": "^14.14.44",
47-
"@types/utf8": "^2.1.6",
47+
"@types/utf8": "^3.0.0",
4848
"@types/webpack": "^5.28.0",
49-
"@types/ws": "^7.4.4",
50-
"@typescript-eslint/eslint-plugin": "^4.23.0",
51-
"@typescript-eslint/parser": "^4.23.0",
49+
"@types/ws": "^8.2.0",
50+
"@typescript-eslint/eslint-plugin": "^5.3.0",
51+
"@typescript-eslint/parser": "^5.3.0",
5252
"chai": "^4.3.4",
5353
"cross-env": "^7.0.3",
5454
"deep-equal": "^2.0.5",
55-
"eslint": "^7.26.0",
55+
"eslint": "^8.1.0",
5656
"express": "^4.17.1",
57-
"express-ws": "^4.0.0",
58-
"glob": "^7.1.7",
59-
"jsdom": "^16.5.3",
60-
"mocha": "^8.4.0",
57+
"express-ws": "^5.0.2",
58+
"glob": "^7.2.0",
59+
"jsdom": "^18.0.1",
60+
"mocha": "^9.1.3",
6161
"mustache": "^4.2.0",
6262
"node-pty": "^0.10.1",
6363
"nyc": "^15.1.0",
64-
"playwright": "^1.11.0",
65-
"source-map-loader": "^2.0.1",
66-
"source-map-support": "^0.5.19",
64+
"playwright": "^1.16.2",
65+
"source-map-loader": "^3.0.0",
66+
"source-map-support": "^0.5.20",
6767
"ts-loader": "^9.1.2",
68-
"typescript": "^4.2.4",
68+
"typescript": "^4.4.4",
6969
"utf8": "^3.0.0",
70-
"webpack": "^5.37.0",
71-
"webpack-cli": "^4.7.0",
72-
"ws": "^7.4.5",
73-
"xterm-benchmark": "^0.2.1"
70+
"webpack": "^5.61.0",
71+
"webpack-cli": "^4.9.1",
72+
"ws": "^8.2.3",
73+
"xterm-benchmark": "^0.3.0"
7474
}
7575
}

0 commit comments

Comments
 (0)