You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some folks use Windows for development, we currently don't work on it at all since we assume POSIX file paths and use CLI utilities which might not exist in windows
Go through all the places where we use file paths, make sure to use path.join or path.resolve
Replace any platform specific CLI commands with JS code
Test on Windows VMs?
Alternatives:
Never support Windows? 😂
The text was updated successfully, but these errors were encountered:
If we start using #10 we can specify a test to run also on Windows which would make it easier to assure that tests run on all platforms. The only problem then would be to make sure that the right paths are used.
Another note: I think Windows is not relevant for the moment as rn-tape is mostly supposed to run on CI environments. If we want go get #11 working then this issue will become a lot more relevant.
Some folks use Windows for development, we currently don't work on it at all since we assume POSIX file paths and use CLI utilities which might not exist in windows
path.join
orpath.resolve
Alternatives:
The text was updated successfully, but these errors were encountered: