Ivo Gabe de Wolff
Ivo Gabe de Wolff
Though I must warn you that this plugin is actually quite complex, as there are many different configurations in which users want to use it. I think the most annoying...
Great, we could discuss that in a chat or a call. What would you prefer?
Or we could just discuss it in this issue of course, then it's also documented for other people who are interested.
Nice! You could send PRs, or I can transfer the repository to you if you feel confident enough?
You should have an invite now! If you're not absolutely sure about some changes, you can also send them as a PR and I'll take a look.
Some first steps might be to look at the JSON issue and update the dependencies. Long term could be looking at incremental compilation and improving that.
I'm afraid I cannot do anything without seeing the project. I do see that you have a complicated configuration with rootDir, rootDirs, paths, include and exclude, that might have some...
You could create a task which only invokes `tsProject.src()` and measure its running time. ```javascript gulp.task('foo', () => tsProject.src() ); ```
@esprehn Have you tried to measure the performance of `tsProject.src()`?
@GregRos could you measure the running time of `appProject.src()`? You can just modify your build task to: ```js gulp.task('build', function() { return appProject.src(); }); ``` @esprehn I understand that. Could...