@xterm/xterm 6.1.0-beta.156 → 6.1.0-beta.158
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/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 +7 -5
- package/src/common/Version.ts +1 -1
- package/src/common/services/Services.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.158",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"dev": "concurrently -k -p [{name}] -n tsc,esbuild,esbuild-demo-client,esbuild-demo-server,server -c blue,yellow,cyan,green,magenta \"npm:tsc-watch\" \"npm:esbuild-watch\" \"npm:esbuild-demo-client-watch\" \"npm:esbuild-demo-server-watch\" \"npm:start\"",
|
|
35
35
|
"build": "npm run tsc",
|
|
36
36
|
"watch": "npm run tsc-watch",
|
|
37
|
-
"tsc": "
|
|
38
|
-
"tsc-watch": "
|
|
37
|
+
"tsc": "tsgo -b ./tsconfig.all.json",
|
|
38
|
+
"tsc-watch": "tsgo -b -w ./tsconfig.all.json --preserveWatchOutput",
|
|
39
39
|
"esbuild": "node bin/esbuild_all.mjs",
|
|
40
40
|
"esbuild-watch": "node bin/esbuild_all.mjs --watch",
|
|
41
41
|
"esbuild-package": "node bin/esbuild_all.mjs --prod",
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"prepackage-headless": "npm run esbuild-package-headless-only",
|
|
73
73
|
"package-headless": "webpack --config ./webpack.config.headless.js",
|
|
74
74
|
"postpackage-headless": "node ./bin/package_headless.js",
|
|
75
|
-
"prepublishOnly": "npm run package"
|
|
75
|
+
"prepublishOnly": "npm run package",
|
|
76
|
+
"agent:session-start": "node bin/agent/setup-repo.mjs"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
78
79
|
"@lunapaint/png-codec": "^0.2.0",
|
|
@@ -92,6 +93,7 @@
|
|
|
92
93
|
"@types/ws": "^8.2.0",
|
|
93
94
|
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
94
95
|
"@typescript-eslint/parser": "^8.50.1",
|
|
96
|
+
"@typescript/native-preview": "^7.0.0-dev.20260213.1",
|
|
95
97
|
"chai": "^4.3.4",
|
|
96
98
|
"concurrently": "^9.1.2",
|
|
97
99
|
"cross-env": "^7.0.3",
|
|
@@ -117,5 +119,5 @@
|
|
|
117
119
|
"ws": "^8.2.3",
|
|
118
120
|
"xterm-benchmark": "^0.3.1"
|
|
119
121
|
},
|
|
120
|
-
"commit": "
|
|
122
|
+
"commit": "c8704930e370aa29a1cb24e3ff5b5f613f9cf2fb"
|
|
121
123
|
}
|
package/src/common/Version.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @license MIT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { IDecoration, IDecorationOptions, ILinkHandler, ILogger, IWindowsPty,
|
|
6
|
+
import type { IDecoration, IDecorationOptions, ILinkHandler, ILogger, IWindowsPty, IOverviewRulerOptions } from '@xterm/xterm';
|
|
7
7
|
import { CoreMouseEncoding, CoreMouseEventType, CursorInactiveStyle, CursorStyle, IAttributeData, ICharset, IColor, ICoreMouseEvent, ICoreMouseProtocol, IDecPrivateModes, IDisposable, IKittyKeyboardState, IModes, IOscLinkData, IWindowOptions } from 'common/Types';
|
|
8
8
|
import { IBuffer, IBufferSet } from 'common/buffer/Types';
|
|
9
9
|
import { createDecorator } from 'common/services/ServiceRegistry';
|