FAQ
Collection of frequently asked questions with ideas on how to troubleshoot and resolve them.
Unexpected behavior after installing or bumping dependencies
Common errors:
Uncaught TypeError: [X] is not a functionType [X] is not assignable to type [Y]- etc
These errors often occurs when multiple conflicting versions of ReactiveDOT are installed. To resolve this, try the following steps:
-
Ensure all ReactiveDOT dependencies are up to date
-
Clean and reinstall dependencies:
Delete yournode_modulesfolder and reinstall dependencies. You can do this manually or use npkill:npx npkill -
Deduplicate dependencies:
Some package manager does not deduplicate dependencies by default and may create duplicates when updating packages. To fix this, run dedupe:# NPM
npm dedupe
# Yarn
yarn dedupe
# PNPM
pnpm dedupe