From 86c7510d89d427838f285dc46f9fcc3e7a865738 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Thu, 21 Apr 2016 19:01:03 -0400 Subject: [PATCH] fix(gulp:test:client): move around some `'tsd'` tasks --- app/templates/gulpfile.babel(gulp).js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/gulpfile.babel(gulp).js b/app/templates/gulpfile.babel(gulp).js index c18730615..6aecc5b2a 100644 --- a/app/templates/gulpfile.babel(gulp).js +++ b/app/templates/gulpfile.babel(gulp).js @@ -310,7 +310,7 @@ gulp.task('copy:constant', () => { .pipe(gulp.dest('.tmp/app')); }) -gulp.task('transpile:client', ['constant', 'copy:constant'], () => { +gulp.task('transpile:client', ['tsd', 'constant', 'copy:constant'], () => { let tsProject = plugins.typescript.createProject('./tsconfig.client.json'); return tsProject.src() .pipe(plugins.sourcemaps.init()) @@ -496,7 +496,7 @@ gulp.task('mocha:integration', () => { .pipe(mocha()); }); -gulp.task('test:client', ['wiredep:test', 'constant'<% if(filters.ts) { %>, 'tsd:test', 'transpile:client', 'transpile:client:test'<% } %>], (done) => { +gulp.task('test:client', ['wiredep:test', 'constant'<% if(filters.ts) { %>, 'transpile:client', 'transpile:client:test'<% } %>], (done) => { new KarmaServer({ configFile: `${__dirname}/${paths.karma}`, singleRun: true