@xterm/addon-unicode11 0.10.0-beta.16 → 0.10.0-beta.161

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@xterm/addon-unicode11",
3
- "version": "0.10.0-beta.16",
3
+ "version": "0.10.0-beta.161",
4
4
  "author": {
5
5
  "name": "The xterm.js authors",
6
6
  "url": "https://xtermjs.org/"
@@ -16,14 +16,14 @@
16
16
  "xterm.js"
17
17
  ],
18
18
  "scripts": {
19
- "build": "../../node_modules/.bin/tsc -p .",
19
+ "build": "../../node_modules/.bin/tsgo -p .",
20
20
  "prepackage": "npm run build",
21
21
  "package": "../../node_modules/.bin/webpack",
22
22
  "prepublishOnly": "npm run package",
23
23
  "start": "node ../../demo/start"
24
24
  },
25
- "commit": "2f549d74ae383588e0e9f6f65616bf275c9ea1e5",
25
+ "commit": "3a9bfa94bc41fb3f53b8926392d9cab854cab867",
26
26
  "peerDependencies": {
27
- "@xterm/xterm": "^6.1.0-beta.16"
27
+ "@xterm/xterm": "^6.1.0-beta.161"
28
28
  }
29
29
  }
@@ -9,7 +9,7 @@ import type { Terminal, ITerminalAddon } from '@xterm/xterm';
9
9
  import type { Unicode11Addon as IUnicode11Api } from '@xterm/addon-unicode11';
10
10
  import { UnicodeV11 } from './UnicodeV11';
11
11
 
12
- export class Unicode11Addon implements ITerminalAddon , IUnicode11Api {
12
+ export class Unicode11Addon implements ITerminalAddon, IUnicode11Api {
13
13
  public activate(terminal: Terminal): void {
14
14
  terminal.unicode.register(new UnicodeV11());
15
15
  }