Closed mattferrin closed 3 years ago
I noticed that replacing the 2 occurrences of process.cwd() with process.cwd().split(path.sep).join(path.posix.sep) resolved this issue locally for me.
process.cwd()
process.cwd().split(path.sep).join(path.posix.sep)
I visited https://shapeshed.com/writing-cross-platform-node/ first, but in the end found https://stackoverflow.com/a/63251716/1964376 to be helpful.
Thanks! I've merged your PR 👍
I noticed that replacing the 2 occurrences of
process.cwd()
withprocess.cwd().split(path.sep).join(path.posix.sep)
resolved this issue locally for me.I visited https://shapeshed.com/writing-cross-platform-node/ first, but in the end found https://stackoverflow.com/a/63251716/1964376 to be helpful.