summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-04 18:33:27 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-04 18:33:27 +0200
commit2e049e05ac14461826cfef3f2ad0d96e7dc581b2 (patch)
tree46c6ea7348ba9a7e670e692025dc16cfdc60c699 /gulpfile.js
parent1b23dabd517a514c0d42baf0feaf19cac4326251 (diff)
downloadwallet-core-2e049e05ac14461826cfef3f2ad0d96e7dc581b2.tar.gz
wallet-core-2e049e05ac14461826cfef3f2ad0d96e7dc581b2.tar.bz2
wallet-core-2e049e05ac14461826cfef3f2ad0d96e7dc581b2.zip
fix build script for new gulp-typescript version
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index ce90fec8e..443eabc43 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -217,7 +217,7 @@ gulp.task("compile-prod", ["clean"], function () {
tsArgs.outDir = ".";
// We don't want source maps for production
tsArgs.sourceMap = undefined;
- return gulp.src(paths.ts.release)
+ return gulp.src(paths.ts.release, {base: "."})
.pipe(ts(tsArgs))
.pipe(gulp.dest("build/ext/"));
});