@xterm/xterm 5.5.0-beta.2 → 5.5.0-beta.4
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 +2 -2
- package/package.json +1 -1
- package/typings/xterm.d.ts +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Xterm.js is a front-end component written in TypeScript that lets applications b
|
|
|
21
21
|
First, you need to install the module, we ship exclusively through [npm](https://www.npmjs.com/), so you need that installed and then add xterm.js as a dependency by running:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npm install xterm
|
|
24
|
+
npm install @xterm/xterm
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
To start using xterm.js on your browser, add the `xterm.js` and `xterm.css` to the head of your HTML page. Then create a `<div id="terminal"></div>` onto which xterm can attach itself. Finally, instantiate the `Terminal` object and then call the `open` function with the DOM object of the `div`.
|
|
@@ -113,7 +113,7 @@ All current and past releases are available on this repo's [Releases page](https
|
|
|
113
113
|
Our CI releases beta builds to npm for every change that goes into master. Install the latest beta build with:
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
npm install -S xterm@beta
|
|
116
|
+
npm install -S @xterm/xterm@beta
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
These should generally be stable, but some bugs may slip in. We recommend using the beta build primarily to test out new features and to verify bug fixes.
|
package/package.json
CHANGED
package/typings/xterm.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ declare module '@xterm/xterm' {
|
|
|
225
225
|
/**
|
|
226
226
|
* The amount of scrollback in the terminal. Scrollback is the amount of
|
|
227
227
|
* rows that are retained when lines are scrolled beyond the initial
|
|
228
|
-
* viewport.
|
|
228
|
+
* viewport. Defaults to 1000.
|
|
229
229
|
*/
|
|
230
230
|
scrollback?: number;
|
|
231
231
|
|