Skip to content

Commit 86c7510

Browse files
committed
fix(gulp:test:client): move around some 'tsd' tasks
1 parent a5e31cf commit 86c7510

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+2-2
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ gulp.task('copy:constant', () => {
310310
.pipe(gulp.dest('.tmp/app'));
311311
})
312312

313-
gulp.task('transpile:client', ['constant', 'copy:constant'], () => {
313+
gulp.task('transpile:client', ['tsd', 'constant', 'copy:constant'], () => {
314314
let tsProject = plugins.typescript.createProject('./tsconfig.client.json');
315315
return tsProject.src()
316316
.pipe(plugins.sourcemaps.init())
@@ -496,7 +496,7 @@ gulp.task('mocha:integration', () => {
496496
.pipe(mocha());
497497
});
498498

499-
gulp.task('test:client', ['wiredep:test', 'constant'<% if(filters.ts) { %>, 'tsd:test', 'transpile:client', 'transpile:client:test'<% } %>], (done) => {
499+
gulp.task('test:client', ['wiredep:test', 'constant'<% if(filters.ts) { %>, 'transpile:client', 'transpile:client:test'<% } %>], (done) => {
500500
new KarmaServer({
501501
configFile: `${__dirname}/${paths.karma}`,
502502
singleRun: true

0 commit comments

Comments
 (0)