@xterm/xterm 6.1.0-beta.257 → 6.1.0-beta.258
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/xterm",
|
|
3
3
|
"description": "Full xterm terminal, in your browser",
|
|
4
|
-
"version": "6.1.0-beta.
|
|
4
|
+
"version": "6.1.0-beta.258",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"esbuild-demo-server-watch": "node bin/esbuild.mjs --demo-server --watch",
|
|
49
49
|
"test": "npm run test-unit",
|
|
50
50
|
"posttest": "npm run lint",
|
|
51
|
-
"lint": "eslint --max-warnings 0 src
|
|
51
|
+
"lint": "oxlint --type-aware --max-warnings 0 src addons demo test && eslint --config eslint.config.naming.mjs --max-warnings 0 src addons demo test",
|
|
52
52
|
"lint-changes": "node ./bin/lint_changes.js",
|
|
53
53
|
"lint-changes-fix": "node ./bin/lint_changes.js --fix",
|
|
54
|
-
"lint-fix": "
|
|
55
|
-
"lint-api": "eslint --config eslint.config.
|
|
54
|
+
"lint-fix": "oxlint --type-aware --fix --max-warnings 0 src addons demo test",
|
|
55
|
+
"lint-api": "oxlint --max-warnings 0 -c .oxlintrc.typings.json typings && eslint --config eslint.config.naming.mjs --max-warnings 0 typings",
|
|
56
56
|
"test-unit": "node ./bin/test_unit.js",
|
|
57
57
|
"test-unit-slow-tests": "npm run test-unit | grep \"ms)\"",
|
|
58
58
|
"test-unit-coverage": "node ./bin/test_unit.js --coverage",
|
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
"esbuild": "^0.28.0",
|
|
96
96
|
"eslint": "^10.3.0",
|
|
97
97
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
98
|
+
"eslint-plugin-oxlint": "^1.67.0",
|
|
98
99
|
"express": "^5.2.1",
|
|
99
100
|
"express-ws": "^5.0.2",
|
|
100
101
|
"jsdom": "^29.1.1",
|
|
@@ -102,6 +103,9 @@
|
|
|
102
103
|
"mustache": "^4.2.0",
|
|
103
104
|
"node-pty": "^1.2.0-beta.9",
|
|
104
105
|
"nyc": "^18.0.0",
|
|
106
|
+
"oxlint": "^1.67.0",
|
|
107
|
+
"oxlint-plugin-eslint": "^1.67.0",
|
|
108
|
+
"oxlint-tsgolint": "^0.23.0",
|
|
105
109
|
"source-map-loader": "^5.0.0",
|
|
106
110
|
"source-map-support": "^0.5.20",
|
|
107
111
|
"ts-loader": "^9.5.7",
|
|
@@ -112,5 +116,5 @@
|
|
|
112
116
|
"ws": "^8.20.0",
|
|
113
117
|
"xterm-benchmark": "^0.3.2"
|
|
114
118
|
},
|
|
115
|
-
"commit": "
|
|
119
|
+
"commit": "4aa04c6b3f2061279f8ef8f443e2b2ec6a4d54ad"
|
|
116
120
|
}
|
package/src/common/Version.ts
CHANGED