Skip to content
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

Open
0xSero opened this issue Jul 2, 2024 · 5 comments · May be fixed by #1300
Open

Cannot Build files on Windows with absolute, or relative paths #1150

0xSero opened this issue Jul 2, 2024 · 5 comments · May be fixed by #1300

Comments

@0xSero
Copy link

0xSero commented Jul 2, 2024

Our goal:

  • We are taking 2 .ts files and building them with tsup
  • We output the build in another directory for later use
  • This process is working flawlessly on Unix based OS (Mac, Linux, WSL)
  • We would like to expand our library to support users running Windows

Problem:

  • Once files are located via Glob, we verify their existence with fs.existsSync() which return true
  • We then pass an array of the file paths to build as seen below:
export async function compileWalletSetupFunctions(
  walletSetupDir: string,
  debug: boolean
) {
  const outDir = path.join(ensureCacheDirExists(), OUT_DIR_NAME);

  // Use a normalized glob pattern
  const globPattern = path.join(walletSetupDir, '**', '*.setup.{ts,js,mjs}');
  
  // Use glob to find files, ensuring proper path handling
  const fileList = await glob(globPattern, { absolute: true, windowsPathsNoEscape: true });

  if (debug) {
    console.log('[DEBUG] Found the following wallet setup files:');
    console.log(fileList, '\n');
  }

  // TODO: This error message is copied over from another function. Refactor this.
  if (!fileList.length) {
    throw new Error(
      [
        `No wallet setup files found at ${walletSetupDir}`,
        'Remember that all wallet setup files must end with `.setup.{ts,js,mjs}` extension!'
      ].join('\n')
    );
  }

  try {
    await build({
      name: 'cli-build',
      silent: true,
      entry: fileList,
      clean: true,
      outDir,
      format: 'esm',
      splitting: true,
      sourcemap: false,
      config: false,
      // TODO: Make this list configurable.
      external: ['@synthetixio/synpress', '@playwright/test', 'playwright-core', 'esbuild', 'tsup'],
      banner: {
        js: FIXES_BANNER
      },
      esbuildOptions(options) {
        // TODO: In this step, if the debug file is present, we should modify `console.log` so it prints from which file the log is coming from.
        // We're dropping `console.log` and `debugger` statements because they do not play nicely with the Playwright Test Runner.
        options.drop = debug ? [] : ['console', 'debugger']
      }
    })
  } catch (e) {
    console.log(e)
  }
  return outDir
}
  • An error occurs at ts normalizeOptions():
    error Error within compile PrettyError file: Cannot find C:\Users\**\**\**\reponame\filepath\filename.ts
  • I've tried to convert to url and passed file:\\C:\Users\**\**\**\reponame\filepath\filename.ts and there I'd get another issue:
    ERR_UNSUPPORTED_ESM_URL_SCHEME
  • I've also tried non absolute paths, with no luck.

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:

@0xSero 0xSero changed the title Cannot Build files on Windows Cannot Build files on Windows with absolute, or relative paths Jul 2, 2024
@0xSero
Copy link
Author

0xSero commented Jul 3, 2024

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);

https://github.com/shellscape/jsx-email/pull/44/files

@0xSero 0xSero closed this as completed Jul 3, 2024
@voliva
Copy link

voliva commented Oct 17, 2024

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.

@Sytten
Copy link

Sytten commented Feb 13, 2025

Yeah its a PITA that it doesnt work, but I think its related to SuperchupuDev/tinyglobby#72

@SuperchupuDev
Copy link
Contributor

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

@0xSero
Copy link
Author

0xSero commented Feb 17, 2025

Made a PR for this if anyone cares to test it or review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants