Skip to content

Commit

Permalink
docs: fix versions of deps so it builds
Browse files Browse the repository at this point in the history
pinning versions caused duplicate versions, as packages themselves use a caret, and there's no lock file. by using carets, we ensure future patch/minor releases will dedupe.
  • Loading branch information
AviVahl committed Dec 1, 2023
1 parent 90211df commit d022282
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions guides/.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.0.0",
"@docusaurus/preset-classic": "3.0.0",
"@docusaurus/theme-mermaid": "^3.0.0",
"@docusaurus/core": "^3.0.1",
"@docusaurus/preset-classic": "^3.0.1",
"@docusaurus/theme-mermaid": "^3.0.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1",
"prism-react-renderer": "^2.1.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.0.0",
"@docusaurus/tsconfig": "3.0.0",
"@docusaurus/types": "3.0.0",
"@types/react": "^18.2.36",
"typescript": "~5.2.2"
"@docusaurus/module-type-aliases": "^3.0.1",
"@docusaurus/tsconfig": "^3.0.1",
"@docusaurus/types": "^3.0.1",
"@types/react": "^18.2.39",
"typescript": "~5.3.2"
},
"engines": {
"node": ">=18.0"
Expand Down

0 comments on commit d022282

Please sign in to comment.