Open
Description
Description
The Puck Remix recipe does not run with either npm run dev
or yarn dev
; both commands throw a build-time error. This is because the tiny-invariant
library is not installed as a dependency by default.
Environment
- Puck version: 0.18.2
Steps to reproduce
- Create a new Puck project using the Remix recipe.
- Open the project folder.
- Run the project in development mode.
What happens
A build-time error occurs:
X [ERROR] Build failed with 1 error:
app/routes/edit.tsx:11:22: ERROR: Could not resolve "tiny-invariant" [plugin css-bundle-plugin]
You can fix this by manually installing tiny-invariant
::
npm install tiny-invariant
What I expect to happen
The recipe should work out of the box without any errors.