Skip to content

Commit

Permalink
Merge pull request #3 from dzearing/ianc/updating-gcb-ts
Browse files Browse the repository at this point in the history
Ianc/updating gcb ts
  • Loading branch information
iclanton committed May 13, 2016
2 parents 8cd703a + 31a98c9 commit 234c141
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"name": "Launch",
"type": "node",
"request": "launch",
"program": "node_modules/gulp/bin/gulp.js",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": [],
"cwd": ".",
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "node-library-build",
"version": "0.1.0",
"version": "0.1.1",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"gulp": "~3.9.1",
"gulp-core-build": "~0.6.1",
"gulp-core-build-mocha": "~0.2.1",
"gulp-core-build-typescript": "~0.2.1"
"gulp-core-build-typescript": "0.3.2"
}
}
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 234c141

Please sign in to comment.