Merge pull request #2419 from Tyriar/master_changes

Master changes for 4.0.1 fixes
This commit is contained in:
Daniel Imms
2019-09-11 14:50:58 -07:00
committed by GitHub
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ export class Linkifier implements ILinkifier {
*/
private _doLinkifyRow(rowIndex: number, text: string, matcher: ILinkMatcher): void {
// clone regex to do a global search on text
const rex = new RegExp(matcher.regex.source, matcher.regex.flags + 'g');
const rex = new RegExp(matcher.regex.source, (matcher.regex.flags || '') + 'g');
let match;
let stringIndex = -1;
while ((match = rex.exec(text)) !== null) {
-1
View File
@@ -35,7 +35,6 @@ module.exports = {
output: {
filename: 'xterm.js',
path: path.resolve('./lib'),
library: 'Terminal',
libraryTarget: 'umd'
},
mode: 'production'