-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
44 lines (41 loc) · 1.28 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const gulp = require('gulp');
const ts = require('gulp-typescript');
const typescript = require('typescript');
const webserver = require('gulp-webserver');
const sourcemaps = require('gulp-sourcemaps');
const Builder = require('systemjs-builder');
const path = require('path');
gulp.task('tsc', () => {
const tsProject = ts.createProject('tsconfig.json');
return gulp.src('src/**/*.ts', {base: 'src'})
.pipe(sourcemaps.init())
.pipe(tsProject()).js
.pipe(sourcemaps.mapSources(function (sourcePath, file) {
return path.basename(sourcePath);
}))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('./src'));
});
gulp.task('bundle', ['tsc'], () => {
const builder = new Builder('./src/', 'system.conf.js');
return builder
.bundle('main.js', 'src/bundle.js', {
sourceMaps: true,
sourceMapContents: true
})
.then(function () {
console.log('Build complete');
})
.catch(function (err) {
console.log('Build error');
console.log(err);
});
});
gulp.task('webserver', ['bundle'], () => {
return gulp.src('./')
.pipe(webserver({
host: '0.0.0.0',
port: 8180,
open: 'index.html'
}));
});