blob: dfe9539043a7d71f1ee16ec10bb1a02379399e31 (
plain)
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
|
import {join} from 'path';
import {APP_SRC, APP_DEST} from '../config';
import {templateLocals, tsProjectFn} from '../utils';
export = function buildJSDev(gulp, plugins) {
let tsProject = tsProjectFn(plugins);
return function () {
let src = [
join(APP_SRC, '**/*.ts'),
'!' + join(APP_SRC, '**/*_spec.ts')
];
let result = gulp.src(src)
.pipe(plugins.plumber())
// Won't be required for non-production build after the change
.pipe(plugins.inlineNg2Template({ base: APP_SRC }))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.typescript(tsProject));
return result.js
.pipe(plugins.sourcemaps.write())
.pipe(plugins.template(templateLocals()))
.pipe(gulp.dest(APP_DEST));
};
};
|