We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be66c91 commit 77a9728Copy full SHA for 77a9728
readme.md
@@ -109,7 +109,7 @@ gulp.task('scripts', function() {
109
var tsResult = tsProject.src() // instead of gulp.src(...)
110
.pipe(ts(tsProject));
111
112
- return tsResult.js.pipe('release');
+ return tsResult.js.pipe(gulp.dest('release'));
113
});
114
```
115
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