Skip to content

Commit

Permalink
upgrade turbo and next to their latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
emiljohansson committed Mar 5, 2023
1 parent 221146f commit fcae887
Show file tree
Hide file tree
Showing 12 changed files with 122 additions and 186 deletions.
2 changes: 1 addition & 1 deletion apps/code-not-found/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/design/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@radix-ui/react-radio-group": "latest",
"framer-motion": "6.2.3",
"lib": "workspace:*",
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"shared": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion apps/games/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"framer-motion": "6.2.3",
"just-shuffle": "4.1.1",
"lib": "workspace:*",
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"shared": "workspace:*"
Expand Down
6 changes: 3 additions & 3 deletions apps/next/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ const Command = ({ onClose }: { onClose: () => void }) => {

return (
<Modal>
<div className="flex">
<div className="flex items-center">
<MagnifyingGlassIcon width={20} height={20} />
<input
ref={fieldRef}
id="input1"
className="input"
className="input flex-1"
placeholder="Type a command or search..."
onChange={(event) => {
setSelectedIndex(0)
Expand All @@ -178,8 +178,8 @@ const Command = ({ onClose }: { onClose: () => void }) => {
)
}}
/>
{selectedIndex}
</div>
<span className="sr-only">{selectedIndex}</span>
<div>
{list.map((project, index) => (
<div
Expand Down
2 changes: 1 addition & 1 deletion apps/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"just-range": "4.1.1",
"keyboard-handler": "3.0.7",
"lib": "workspace:*",
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
Expand Down
8 changes: 7 additions & 1 deletion apps/next/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@
],
"strictNullChecks": true
},
"include": ["*.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": [
"*.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"/Users/emiljohansson/Sites/emiljohansson.dev/apps/next/.next/types/**/*.ts"
],
"exclude": ["node_modules"]
}
2 changes: 1 addition & 1 deletion apps/password-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@supabase/ui": "0.36.5",
"crypto-js": "4.1.1",
"lib": "workspace:*",
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"shared": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"prettier": "2.8.4",
"start-server-and-test": "1.14.0",
"ts-jest": "27.1.3",
"turbo": "1.4.5",
"turbo": "1.8.3",
"typescript": "4.9.5"
},
"packageManager": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "eslint-preset.js",
"license": "MIT",
"dependencies": {
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:ci": "npm run test"
},
"dependencies": {
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@radix-ui/react-slider": "1.0.0",
"framer-motion": "6.2.3",
"lib": "workspace:*",
"next": "13.2.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1"
Expand Down
Loading

0 comments on commit fcae887

Please sign in to comment.