Fixing build break as per #29330

This commit is contained in:
Ramya Achutha Rao
2017-06-23 11:28:40 -07:00
parent 84747f28d3
commit 7be031a686
7 changed files with 1182 additions and 4 deletions

View File

@@ -73,7 +73,6 @@ export function compileTask(out: string, build: boolean): () => NodeJS.ReadWrite
const src = es.merge(
gulp.src('src/**', { base: 'src' }),
gulp.src('node_modules/typescript/lib/lib.d.ts'),
gulp.src('node_modules/@types/**/index.d.ts')
);
return src
@@ -91,7 +90,6 @@ export function watchTask(out: string, build: boolean): () => NodeJS.ReadWriteSt
const src = es.merge(
gulp.src('src/**', { base: 'src' }),
gulp.src('node_modules/typescript/lib/lib.d.ts'),
gulp.src('node_modules/@types/**/index.d.ts')
);
const watchSrc = watch('src/**', { base: 'src' });