mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
fix: add gulp ts source root for building
This commit is contained in:
@@ -20,9 +20,9 @@ gulp.task('compile', function() {
|
|||||||
return tsProject.src()
|
return tsProject.src()
|
||||||
.pipe(sourcemaps.init())
|
.pipe(sourcemaps.init())
|
||||||
.pipe(tsProject())
|
.pipe(tsProject())
|
||||||
.pipe(sourcemaps.write('.'))
|
.pipe(sourcemaps.write('.', { sourceRoot: './', includeContent: false }))
|
||||||
.on('error', (err) => console.log(err))
|
.on('error', (err) => console.log(err))
|
||||||
.pipe(gulp.dest('lib/'))
|
.pipe(gulp.dest('lib'))
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('less', function () {
|
gulp.task('less', function () {
|
||||||
|
|||||||
Reference in New Issue
Block a user