Skip to content

Commit

Permalink
fix(gulp:test:client): move around some 'tsd' tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed Apr 21, 2016
1 parent a5e31cf commit 86c7510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gulpfile.babel(gulp).js
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 86c7510

Please sign in to comment.