We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by @bestander in #18 (comment)
Hi, thanks for the best gulp tsc task. I think this pull request broke my build and I reverted to version 0.5.0.
This is my setup:
gulp.task('compile-typescript', function() { return gulp.src(['app/**/*.ts']) .pipe(cache('typescript')) .pipe(typescript(typescriptOptions)) .pipe(gulp.dest(webOutputPath + '/app')); }); gulp.task('dev', function(callback) { runSequence('clean-web-output', ['compile-typescript', 'compile-sass' ],//, 'run-tests'], function() { gulp.watch(['app/**/*.ts'], ['compile-typescript']); }); });
If I change one TS file I expect 1 or more JS files to be compiled into my .tmp folder.
For example if I change:
/app/online-reader/popup-reader-directive.ts
Then compiler produces this list:
<tmp>/online-reader/popup-reader-directive.js <tmp>/online-reader/reader-preferences-service.js <tmp>/analytics/http-latency-sampler.js
The change in this ticket changes it to:
<tmp>/online-reader/online-reader/popup-reader-directive.js <tmp>/online-reader/online-reader/reader-preferences-service.js <tmp>/online-reader/analytics/http-latency-sampler.js
Which os wrong.
I am happy to debug or provide more test data.
The text was updated successfully, but these errors were encountered:
Merge pull request #22 from /issues/21
253480e
Fix incorrect output path when input file refers to other files
Should be fixed in v0.6.0
Sorry, something went wrong.
Tested. All good, thanks.
No branches or pull requests
Reported by @bestander in #18 (comment)
Hi, thanks for the best gulp tsc task.
I think this pull request broke my build and I reverted to version 0.5.0.
This is my setup:
If I change one TS file I expect 1 or more JS files to be compiled into my .tmp folder.
For example if I change:
Then compiler produces this list:
The change in this ticket changes it to:
Which os wrong.
I am happy to debug or provide more test data.
The text was updated successfully, but these errors were encountered: