@xterm/xterm 6.1.0-beta.219 → 6.1.0-beta.220
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/README.md +1 -0
- package/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/lib/xterm.mjs +1 -1
- package/lib/xterm.mjs.map +1 -1
- package/package.json +2 -10
- package/src/common/Version.ts +1 -1
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.220",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -56,7 +56,6 @@
|
|
|
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",
|
|
59
|
-
"test-unit-dev": "cross-env NODE_PATH='./out' mocha",
|
|
60
59
|
"test-integration": "node ./bin/test_integration.js --workers=75%",
|
|
61
60
|
"test-integration-chromium": "node ./bin/test_integration.js --workers=75% \"--project=Chromium\"",
|
|
62
61
|
"test-integration-firefox": "node ./bin/test_integration.js --workers=75% \"--project=FirefoxStable\"",
|
|
@@ -80,15 +79,11 @@
|
|
|
80
79
|
"@playwright/test": "^1.57.0",
|
|
81
80
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
82
81
|
"@types/chai": "^4.2.22",
|
|
83
|
-
"@types/debug": "^4.1.7",
|
|
84
|
-
"@types/deep-equal": "^1.0.1",
|
|
85
82
|
"@types/express": "4",
|
|
86
83
|
"@types/express-ws": "^3.0.1",
|
|
87
84
|
"@types/jsdom": "^27.0.0",
|
|
88
85
|
"@types/mocha": "^9.0.0",
|
|
89
86
|
"@types/node": "^22.19.3",
|
|
90
|
-
"@types/trusted-types": "^1.0.6",
|
|
91
|
-
"@types/utf8": "^3.0.0",
|
|
92
87
|
"@types/webpack": "^5.28.0",
|
|
93
88
|
"@types/ws": "^8.2.0",
|
|
94
89
|
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
@@ -96,8 +91,6 @@
|
|
|
96
91
|
"@typescript/native-preview": "^7.0.0-dev.20260213.1",
|
|
97
92
|
"chai": "^4.3.4",
|
|
98
93
|
"concurrently": "^9.1.2",
|
|
99
|
-
"cross-env": "^7.0.3",
|
|
100
|
-
"deep-equal": "^2.0.5",
|
|
101
94
|
"esbuild": "~0.25.2",
|
|
102
95
|
"eslint": "^9.39.2",
|
|
103
96
|
"eslint-plugin-jsdoc": "^50.8.0",
|
|
@@ -113,11 +106,10 @@
|
|
|
113
106
|
"ts-loader": "^9.3.1",
|
|
114
107
|
"typescript": "^5.9.3",
|
|
115
108
|
"typescript-eslint": "^8.50.1",
|
|
116
|
-
"utf8": "^3.0.0",
|
|
117
109
|
"webpack": "^5.61.0",
|
|
118
110
|
"webpack-cli": "^4.9.1",
|
|
119
111
|
"ws": "^8.2.3",
|
|
120
112
|
"xterm-benchmark": "^0.3.1"
|
|
121
113
|
},
|
|
122
|
-
"commit": "
|
|
114
|
+
"commit": "e749cb61253b9ca886a0ad9bf15f5d95c70eadf6"
|
|
123
115
|
}
|
package/src/common/Version.ts
CHANGED