Skip to content

Commit

Permalink
Fixing TSLint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
iclanton committed May 10, 2016
1 parent 0db09cb commit 9116223
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { task, watch, serial, parallel } from 'gulp-core-build';
import { task, watch, serial, parallel, IExecutable } from 'gulp-core-build';
import { typescript, tslint } from 'gulp-core-build-typescript';
import { instrument, mocha } from 'gulp-core-build-mocha';

Expand All @@ -7,8 +7,8 @@ export * from 'gulp-core-build-typescript';
export * from 'gulp-core-build-mocha';

// Define default task groups.
const buildTasks = task('build', parallel(tslint, typescript));
const testTasks = task('test', serial(buildTasks, instrument, mocha));
const buildTasks: IExecutable = task('build', parallel(tslint, typescript));
const testTasks: IExecutable = task('test', serial(buildTasks, instrument, mocha));

task('watch', watch('src/**.ts', testTasks));

Expand Down

0 comments on commit 9116223

Please sign in to comment.