UNPKG

generator-angular2gen

Version:

A simple way to learn Angular2 with angular2gen !

14 lines (12 loc) 400 B
import gulp from 'gulp'; import path from 'path'; import { TEMPLATE_DIR, TMP_DIR } from '../../gulp.conf'; import {typescript} from '../../utils/typescript'; ///////////////////// Typescript Tasks ///////////////////// gulp.task('build:ts:prod', () => { let enableProdMode = true; return typescript([path.join(TEMPLATE_DIR, '**', '*.ts')], TMP_DIR, enableProdMode); });