To see which version of TinaCMS you’re currently using, check your package.json file:
"dependencies": {"@tinacms/cli": "^1.x.x","tinacms": "^1.x.x"}
🔍 How to Find Available Versions
Note: Always update both tinacms and @tinacms/cli to the latest version together to get the latest feature and avoid compatibility issues.
You can view all published versions of TinaCMS packages on npmjs.com:
Use your preferred package manager to upgrade TinaCMS to the latest version:
With npm:
npm install tinacms @tinacms/cli@latest
With pnpm:
pnpm add tinacms @tinacms/cli@latest
With yarn:
yarn add tinacms @tinacms/cli@latest
Example of Installing a Specific Version of TinaCMS with npm
With npm:
npm install tinacms@2.8.0 @tinacms/cli@1.10.0