Skip to content

Commit

Permalink
feat: Bump React 19 to the stable release version (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
karolkarolka authored Dec 9, 2024
1 parent 5d29850 commit b5e10bd
Show file tree
Hide file tree
Showing 6 changed files with 745 additions and 638 deletions.
2 changes: 1 addition & 1 deletion apps/automated-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"*.*": "prettier --write --ignore-unknown"
},
"engines": {
"node": "^20"
"node": ">=20"
},
"type": "module"
}
16 changes: 5 additions & 11 deletions apps/storefront/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"next-auth": "5.0.0-beta.17",
"next-intl": "3.23.5",
"nextjs-routes": "2.1.0",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "4.0.13",
"react-hook-form": "7.53.2",
"schema-dts": "1.1.2",
Expand All @@ -58,8 +58,8 @@
"@types/js-cookie": "3.0.6",
"@types/lodash": "4.17.7",
"@types/node": "20.14.12",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "10.4.20",
Expand All @@ -81,12 +81,6 @@
"*.*": "prettier --write --ignore-unknown"
},
"engines": {
"node": "^20"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
"node": ">=20"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^20"
"node": ">=20"
},
"scripts": {
"build": "dotenv -- turbo run build",
Expand Down
4 changes: 2 additions & 2 deletions packages/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"dependencies": {
"@saleor/auth-sdk": "1.0.1",
"@stripe/stripe-js": "3.5.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@types/stripe": "8.0.417",
"buttercms": "2.1.4",
"libphonenumber-js": "1.11.3",
Expand Down
12 changes: 3 additions & 9 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"lint-staged": "latest",
"lucide-react": "^0.368.0",
"prettier": "3.3.3",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.53.2",
"string-strip-html": "13.4.8",
"tailwind-merge": "^2.2.1",
Expand All @@ -51,19 +51,13 @@
"devDependencies": {
"@nimara/config": "workspace:*",
"@types/node": "20.14.12",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react": "19.0.0",
"eslint-config-custom": "workspace:*",
"tsconfig": "workspace:*",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{js,cjs,ts,tsx}": "eslint --fix",
"*.*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}
Loading

0 comments on commit b5e10bd

Please sign in to comment.