From 0c2f0796702d523ba1f32102d3ab879744061ba9 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Sat, 8 Jul 2017 16:35:53 +0300 Subject: [PATCH] Update `gulpfile.js` The `outDir` compiler option of TypeScript seems to be an absolute URL now. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1f92e537..d9ab8714 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,7 +50,7 @@ gulp.task('browserify', ['tsc'], function() { let browserifyOptions = { basedir: buildDir, debug: true, - entries: [`../${outDir}/xterm.js`], + entries: [`${outDir}/xterm.js`], standalone: 'Terminal', cache: {}, packageCache: {}