-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/build action #360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/build action #360
Changes from 8 commits
00a5e4f
7a1dd63
6149f34
14cc144
a088cca
a03ee8e
5daa65f
81203b8
a8bbe65
4c1ff13
4740721
18457c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
!.gitignore | ||
./* | ||
sosweetham marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
"date-fns": "^4.1.0", | ||
"firebase": "^9.9.4", | ||
"firebase-admin": "^13.4.0", | ||
"framer-motion": "^7.2.1", | ||
"motion": "^12.0.0", | ||
"next": "^12.3.0", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
|
@@ -37,8 +37,8 @@ | |
"@testing-library/react": "^13.3.0", | ||
"@testing-library/user-event": "^13.5.0", | ||
"@types/node": "18.6.4", | ||
"@types/react": "18.0.16", | ||
"@types/react-dom": "18.0.6", | ||
"@types/react": "18.2.79", | ||
"@types/react-dom": "18.2.25", | ||
Comment on lines
+40
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainPotential Next.js 12 + TypeScript 5 incompatibility. Next 12.3 historically targeted TS 4.x; TS 5.x may cause typecheck/build issues. If build fails, pin TS to 4.9.x for blabsy or upgrade Next. Also applies to: 59-59 🌐 Web query:
💡 Result: No. Next.js 12.3 (released Sep 8, 2022) predates TypeScript 5.0 (released Mar 16, 2023) and Next.js’ docs for the v12 era reference TypeScript v4.x (minimum recommended v4.5.2), so Next.js 12.3 does not officially target/support TypeScript 5.x. [1][2][3] Sources:
🏁 Script executed: #!/usr/bin/env bash
rg -nC2 '"typescript"' platforms/blabsy/package.json Length of output: 132 Pin TypeScript to 4.9.x or upgrade Next.js 🤖 Prompt for AI Agents
|
||
"@typescript-eslint/eslint-plugin": "^5.32.0", | ||
"@typescript-eslint/parser": "^5.32.0", | ||
"autoprefixer": "^10.4.8", | ||
|
@@ -56,9 +56,9 @@ | |
"prettier-plugin-tailwindcss": "^0.1.13", | ||
"sass": "^1.54.4", | ||
"tailwindcss": "^3.2.4", | ||
"typescript": "4.7.4" | ||
"typescript": "5.0.4" | ||
}, | ||
"lint-staged": { | ||
"**/*": "prettier --write --ignore-unknown" | ||
} | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.