Skip to content

Commit

Permalink
Fix code in readme, fix #111
Browse files Browse the repository at this point in the history
  • Loading branch information
ivogabe committed May 9, 2015
1 parent be66c91 commit 77a9728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ gulp.task('scripts', function() {
var tsResult = tsProject.src() // instead of gulp.src(...)
.pipe(ts(tsProject));
return tsResult.js.pipe('release');
return tsResult.js.pipe(gulp.dest('release'));
});
```
Note: you can only use `tsProject.src()` if your `tsconfig.json` file has a `files` property. If it doesn't, you should use `gulp.src('**/**.ts')`.
Expand Down

0 comments on commit 77a9728

Please sign in to comment.