-
-
- xterm.js: socket attach
-
-
- Attach the terminal to a WebSocket terminal stream with ease. Perfect for attaching to your
- Docker containers.
-
-
- Socket information
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/addons/attach/package.json b/src/addons/attach/package.json
deleted file mode 100644
index 9e45068b..00000000
--- a/src/addons/attach/package.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "xterm.attach",
- "main": "attach.js",
- "private": true
-}
diff --git a/src/addons/attach/tsconfig.json b/src/addons/attach/tsconfig.json
deleted file mode 100644
index 359fbd24..00000000
--- a/src/addons/attach/tsconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "compilerOptions": {
- "module": "commonjs",
- "target": "es5",
- "lib": [
- "dom",
- "es6",
- ],
- "rootDir": ".",
- "outDir": "../../../lib/addons/attach/",
- "sourceMap": true,
- "removeComments": true,
- "declaration": true,
- "preserveWatchOutput": true
- },
- "include": [
- "**/*.ts",
- "../../../typings/xterm.d.ts"
- ]
-}
diff --git a/src/addons/webLinks/package.json b/src/addons/webLinks/package.json
deleted file mode 100644
index f200cab4..00000000
--- a/src/addons/webLinks/package.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "xterm.weblinks",
- "main": "weblinks.js",
- "private": true
-}
diff --git a/src/addons/webLinks/tsconfig.json b/src/addons/webLinks/tsconfig.json
deleted file mode 100644
index 18105aa2..00000000
--- a/src/addons/webLinks/tsconfig.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "compilerOptions": {
- "module": "commonjs",
- "target": "es5",
- "lib": [
- "dom",
- "es5",
- ],
- "rootDir": ".",
- "outDir": "../../../lib/addons/webLinks/",
- "sourceMap": true,
- "removeComments": true,
- "declaration": true,
- "preserveWatchOutput": true,
- "types": [
- "../../node_modules/@types/mocha"
- ]
- },
- "include": [
- "**/*.ts",
- "../../../typings/xterm.d.ts"
- ]
-}
diff --git a/src/addons/webLinks/webLinks.test.ts b/src/addons/webLinks/webLinks.test.ts
deleted file mode 100644
index 1e8a4ae7..00000000
--- a/src/addons/webLinks/webLinks.test.ts
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- * Copyright (c) 2017 The xterm.js authors. All rights reserved.
- * @license MIT
- */
-
-import { assert } from 'chai';
-
-import * as webLinks from './webLinks';
-
-class MockTerminal {
- public regex: RegExp;
- public handler: (event: MouseEvent, uri: string) => void;
- public options?: any;
-
- public registerLinkMatcher(regex: RegExp, handler: (event: MouseEvent, uri: string) => void, options?: any): number {
- this.regex = regex;
- this.handler = handler;
- this.options = options;
- return 0;
- }
-}
-
-describe('webLinks addon', () => {
- describe('apply', () => {
- it('should do register the `webLinksInit` method', () => {
- webLinks.apply(