It looks like that as a side effect of those npm installs, it modified package locks:
> git st ✔ 4s 16.15.0 Node
On branch main
Your branch is up to date with 'origin/main'.
Changes not staged for commit:
modified: frameworks/astro/package-lock.json
modified: frameworks/next/package-lock.json
modified: frameworks/next/yarn.lock
modified: frameworks/nuxt3/package-lock.json
modified: frameworks/solid/package-lock.json
modified: frameworks/svelte/package-lock.json
Untracked files:
frameworks/fresh/package-lock.json
That might have something to do with the failure case.
Here's what I did:
nvm
(it would be cool if you could fix the exact version of Node this way)npm install
npm run install
cd apps/components
npm install
npm run build
cd ../..
- Back to project rootnpm run build
It's compiling a lot and then failing with this:
It's possible I'm missing something obvious.
It looks like that as a side effect of those
npm install
s, it modified package locks:That might have something to do with the failure case.