Skip to content

Commit

Permalink
html: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tsl0922 committed Oct 2, 2023
1 parent 67ee27a commit 7a57d76
Show file tree
Hide file tree
Showing 5 changed files with 16,006 additions and 15,135 deletions.
3 changes: 3 additions & 0 deletions html/.eslintrc.json
Expand Up @@ -5,6 +5,9 @@
"files": ["**/*.ts", "**/*.tsx"],
"parserOptions": {
"jsxPragma": "h"
},
"rules": {
"@typescript-eslint/no-duplicate-enum-values": "off"
}
},
{
Expand Down
37 changes: 20 additions & 17 deletions html/package.json
Expand Up @@ -21,49 +21,52 @@
"node": ">=12"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.43.0",
"eslint": "^8.50.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-webpack-plugin": "^4.0.1",
"gts": "^4.0.1",
"gts": "^5.0.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-gzip": "^1.4.2",
"gulp-inline-source": "^4.0.0",
"gulp-rename": "^2.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"sass": "^1.63.6",
"sass-loader": "^13.3.1",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"scssfmt": "^1.0.7",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"through2": "^4.0.2",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"util": "^0.12.5",
"webpack": "^5.88.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"decko": "^1.2.0",
"file-saver": "^2.0.5",
"preact": "^10.15.1",
"trzsz": "^1.1.0",
"whatwg-fetch": "^3.6.2",
"xterm": "^5.2.1",
"xterm-addon-canvas": "^0.4.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-image": "^0.4.1",
"xterm-addon-web-links": "^0.8.0",
"xterm-addon-webgl": "^0.15.0",
"preact": "^10.18.1",
"trzsz": "^1.1.1",
"whatwg-fetch": "^3.6.19",
"xterm": "^5.3.0",
"xterm-addon-canvas": "^0.5.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-image": "^0.5.0",
"xterm-addon-web-links": "^0.9.0",
"xterm-addon-webgl": "^0.16.0",
"zmodem.js": "^0.1.10"
},
"resolutions": {
"zmodem.js@^0.1.10": "patch:zmodem.js@npm%3A0.1.10#./.yarn/patches/zmodem.js-npm-0.1.10-e5537fa2ed.patch"
},
"packageManager": "yarn@3.6.0"
"packageManager": "yarn@3.6.3"
}
5 changes: 4 additions & 1 deletion html/src/components/terminal/xterm/index.ts
Expand Up @@ -95,7 +95,10 @@ export class Xterm {

private writeFunc = (data: ArrayBuffer) => this.writeData(new Uint8Array(data));

constructor(private options: XtermOptions, private sendCb: () => void) {}
constructor(
private options: XtermOptions,
private sendCb: () => void
) {}

dispose() {
for (const d of this.disposables) {
Expand Down

0 comments on commit 7a57d76

Please sign in to comment.