Closed vinaykapadia closed 2 years ago
Yes, this seems to be an issue on Windows. I don't use it for development and couldn't track it down in a limited amount of time, but let's see if anyone else has some insight.
Ah cool. I'll give it a try on Linux.
I tried it on Linux, worked fine.
Thanks for confirming. Since it should work in WSL, going ahead and closing for now. Hopefully, whatever the issue is, it'll be fixed upstream.
Just verified, it does work in WSL. Thanks!
I just ran into this issue while building on Windows and did a bit of investigation:
It is caused by a problem in the License Webpack Plugin
: https://github.com/xz64/license-webpack-plugin/issues/124#issuecomment-1189573682
I can confirm that building Karaoke Eternal works fine on Windows, if I include the following exclude to the webpack.license.config.js
:
excludedPackageTest: (packageName) => {
return (packageName === "karaoke-eternal");
},
I get this error when trying to build. I'm not very familiar with node so I'm not sure how to fix this. I cloned the repo, ran
npm install
and thennpm run build
and I get the output below. Any thoughts?