-
-
Notifications
You must be signed in to change notification settings - Fork 244
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
Cannot Build files on Windows with absolute, or relative paths #1150
Comments
Solved using this pattern: // Credit: https://github.com/rollup/plugins/blob/master/packages/pluginutils/src/normalizePath.ts#L5
const normalizePath = (filename: string) => filename.split(win32.sep).join(posix.sep); |
I would reopen this issue. There is a workaround, which is to replace all win32 separators () into posix separators as @Seroxdesign shown, but it's still an issue everyone using both systems will run into. |
Yeah its a PITA that it doesnt work, but I think its related to SuperchupuDev/tinyglobby#72 |
while we wait on an upstream fix, this can be easily fixed on tsup's side by converting paths with backslashes to paths with forward slashes |
Made a PR for this if anyone cares to test it or review |
Our goal:
tsup
Problem:
fs.existsSync()
which return truebuild
as seen below:ts normalizeOptions()
:error Error within compile PrettyError file: Cannot find C:\Users\**\**\**\reponame\filepath\filename.ts
file:\\C:\Users\**\**\**\reponame\filepath\filename.ts
and there I'd get another issue:ERR_UNSUPPORTED_ESM_URL_SCHEME
At my whits end as I've read most of the issues in the repo, maybe I'm missing something super obvious but any help would be appreciated.
Resources:
The text was updated successfully, but these errors were encountered: