Always use posix path separators#20
Merged
Bessonov merged 1 commit intoBessonov:masterfrom Mar 1, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes Issue #19, where on Windows the tool was generating TypeScript project references with backslash (\\) path separators instead of forward slash (/) POSIX separators, causing spurious "missing" and "obsolete" reference diffs. The fix targets the one location in src/index.ts where relative paths are computed and stored as TS project references.
Changes:
- Converts the computed relative path to POSIX format before storing it as a TypeScript project reference, to ensure forward slashes are used on all platforms.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Owner
|
Thanks for your contributions! I still need to make a few more changes before the release, like updating dependencies. I think it'll take a few days. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #19
Forces POSIX paths on every platform.
Ran tests on windows and WSL.