@xterm/xterm 5.5.0-beta.1 → 5.5.0-beta.3

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +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`.
@@ -30,8 +30,8 @@ To start using xterm.js on your browser, add the `xterm.js` and `xterm.css` to t
30
30
  <!doctype html>
31
31
  <html>
32
32
  <head>
33
- <link rel="stylesheet" href="node_modules/xterm/css/xterm.css" />
34
- <script src="node_modules/xterm/lib/xterm.js"></script>
33
+ <link rel="stylesheet" href="node_modules/@xterm/xterm/css/xterm.css" />
34
+ <script src="node_modules/@xterm/xterm/lib/xterm.js"></script>
35
35
  </head>
36
36
  <body>
37
37
  <div id="terminal"></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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "5.5.0-beta.1",
4
+ "version": "5.5.0-beta.3",
5
5
  "main": "lib/xterm.js",
6
6
  "style": "css/xterm.css",
7
7
  "types": "typings/xterm.d.ts",