UNPKG

generator-angular2gen

Version:

A simple way to learn Angular2 with angular2gen !

13 lines (11 loc) 351 B
import gulp from 'gulp'; import path from 'path'; import { TEMPLATE_DIR, DEV_DIR } from '../../gulp.conf'; import {typescript} from '../../utils/typescript'; ///////////////////// Typescript Tasks ///////////////////// gulp.task('build:ts:dev', () => { return typescript([path.join(TEMPLATE_DIR, '**', '*.ts')], DEV_DIR); });