Skip to content

Commit 77a9728

Browse files
committed
Fix code in readme, fix #111
1 parent be66c91 commit 77a9728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ gulp.task('scripts', function() {
109109
var tsResult = tsProject.src() // instead of gulp.src(...)
110110
.pipe(ts(tsProject));
111111
112-
return tsResult.js.pipe('release');
112+
return tsResult.js.pipe(gulp.dest('release'));
113113
});
114114
```
115115
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')`.

0 commit comments

Comments
 (0)