Update gulpfile.js

The `outDir` compiler option of TypeScript seems to be an absolute URL now.
This commit is contained in:
Paris Kasidiaris
2017-07-08 16:35:53 +03:00
parent d266d995ab
commit 0c2f079670
+1 -1
View File
@@ -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: {}