Merge pull request #1483 from AndrienkoAleksandr/littleFix

Minor: clean up build logs for source code without tests.
This commit is contained in:
Daniel Imms
2018-06-01 09:12:05 -07:00
committed by GitHub
17 changed files with 42 additions and 25 deletions
-2
View File
@@ -5,8 +5,6 @@
* Implements the attach method, that attaches the terminal to a WebSocket stream.
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
import { IAttachAddonTerminal } from './Interfaces';
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -13,8 +13,6 @@
* row and truncate its width with the current number of columns).
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
export interface IGeometry {
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -3,8 +3,6 @@
* @license MIT
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
/**
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -3,8 +3,6 @@
* @license MIT
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { SearchHelper } from './SearchHelper';
import { Terminal } from 'xterm';
import { ISearchAddonTerminal } from './Interfaces';
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -6,8 +6,6 @@
* WebSocket stream.
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
import { ITerminadoAddonTerminal } from './Interfaces';
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -3,8 +3,6 @@
* @license MIT
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal, ILinkMatcherOptions } from 'xterm';
const protocolClause = '(https?:\\/\\/)';
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -3,8 +3,6 @@
* @license MIT
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
import { IWinptyCompatAddonTerminal } from './Interfaces';
+5 -1
View File
@@ -7,5 +7,9 @@
"sourceMap": true,
"removeComments": true,
"declaration": true
}
},
"include": [
"**/*.ts",
"../../../typings/xterm.d.ts"
]
}
-2
View File
@@ -3,8 +3,6 @@
* @license MIT
*/
/// <reference path="../../../typings/xterm.d.ts"/>
import { Terminal } from 'xterm';
/**
+2 -1
View File
@@ -15,7 +15,8 @@
"noUnusedLocals": true
},
"include": [
"src/**/*"
"src/**/*",
"typings/xterm.d.ts"
],
"exclude": [
"src/addons/**/*"