🔁 Additional context – tried Yarn as well
After failing with npm install and multiple --legacy-peer-deps workarounds, I also tried using yarn (in case the project was originally built that way).
Here’s what I did:
git clone https://github.com/ludufre/xmworkers.git
cd xmworkers
yarn install
Result:
00h00m00s 0/0: : ERROR: [Errno 2] No such file or directory: 'install'
Apparently, the project has no yarn.lock, no install script, and nothing that makes yarn work either. So this is a dead end too.
🧨 Summary
At this point:
- npm install is broken due to peer conflicts and missing packages
- ng build fails with Webpack errors (extends undefined)
- yarn install doesn’t work either
- There's no Dockerfile or prebuilt release
➡️ The project cannot be built or used by end users without a deep dive into Angular 13 internals and hours of trial/error.
Please consider:
Publishing a working dist/ ZIP
Creating a Dockerfile
Or updating the deps + build instructions for Debian 12 / Node 18/22 users
Thanks.
🔁 Additional context – tried Yarn as well
After failing with
npm installand multiple--legacy-peer-depsworkarounds, I also tried usingyarn(in case the project was originally built that way).Here’s what I did:
Result:
00h00m00s 0/0: : ERROR: [Errno 2] No such file or directory: 'install'Apparently, the project has no yarn.lock, no install script, and nothing that makes yarn work either. So this is a dead end too.
🧨 Summary
At this point:
➡️ The project cannot be built or used by end users without a deep dive into Angular 13 internals and hours of trial/error.
Please consider:
Publishing a working dist/ ZIP
Creating a Dockerfile
Or updating the deps + build instructions for Debian 12 / Node 18/22 users
Thanks.