]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Update `gulpfile.js`
authorParis Kasidiaris <paris@sourcelair.com>
Sat, 8 Jul 2017 13:35:53 +0000 (16:35 +0300)
committerParis Kasidiaris <paris@sourcelair.com>
Sat, 8 Jul 2017 13:35:53 +0000 (16:35 +0300)
The `outDir` compiler option of TypeScript seems to be an absolute URL now.

gulpfile.js

index 1f92e537517adeec76aa75391f1e9794e7ca8fd9..d9ab8714758dce52820977e69cf6c37e5718a09d 100644 (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: {}