Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (13 loc) · 569 Bytes

GOTCHAS.md

File metadata and controls

24 lines (13 loc) · 569 Bytes

GOTCHAS

Miscellaneous notes on potential issues and possible workarounds.


If Prisma errors, make sure there are not duplicate clients. Various version combinations of yarn/prisma/redwoodjs have been known to cause issues.

CORRECT

node_modules/.prisma

WRONG

api/node_modules/.prisma


TODO

  • Look into Jest tests not picking up transitive dependencies, e.g. ArticleCell -> Article -> CommentForm when using "only changed" mode.