jarek-foksa / xel

Xel - Widget toolkit for building native-like Electron and Web apps
https://xel-toolkit.org
Other
689 stars 59 forks source link

package.js doesn't process theme files / iconsets on Windows. #125

Closed blendermf closed 1 year ago

blendermf commented 1 year ago

The path from import.meta.url used will fail with glob.sync on Windows because it returns a windows style path that's incompatible.

Changing the line let projectPath = dirname(fileURLToPath(import.meta.url)) to let projectPath = dirname(fileURLToPath(import.meta.url)).split(sep).join(posix.sep); fixes the issue.