-
-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
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
Support for symlinks in project references #1136
Conversation
Nice work @sheetalkamat! I can see there's a bunch of failing tests which you're no doubt looking into. Having had a quick look it seems that TypeScript <= 2.6 tests are failing. I've been wondering about dropping support for older versions of TypeScript; maybe making the minimum supported version TypeScript 3.6. It would speed up our CI considerably as we'd have a much smaller test matrix to run in Travis / AppVeyor. Users on older versions of TypeScript would still have older versions of ts-loader they could use. If it makes your life easier, then do feel free to consider doing that in this PR. TypeScript 2.6 was a long time ago! |
This is what resulted in using incorrect newLine in tests in SolutionBuilderHost
From the looks of it this is done @sheetalkamat? Thanks so much for your work! @andrewbranch would you be able to give this a review when you get a chance please? I've also upgraded the version in the |
Yep, I will do it this week if not today. 🚀 |
@@ -0,0 +1 @@ | |||
export const getMeaningOfLife2 = () => 45; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
45?! 😱
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a sick mind right there 😉
Shipping now https://github.com/TypeStrong/ts-loader/releases/tag/v8.0.0 Thanks for all your work @sheetalkamat and thanks for the review @andrewbranch! |
Proved yarn workspaces, project references & ts-loader work together. Fixed in TypeStrong/ts-loader#1136
Fixes #1114