-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade lots of packages (including an upgrade from next 10 to 13) (#57)
- Upgrade all packages (including next) to latest, except: - Apollo microservices (there's an issue with how we return `apolloServer.createHandler` to the caller as a default export) - `graphql` (for compatibility with peer dependencies) - Also upgrades to the AWS SDK v3 instead of v2 for SES integration. - Also switches from `react-toast-notifications` (deprecated) to `react-hot-toast` - Also switches from `react-dnd` (dying) to `@dnd-kit` (it's so much better, I deleted *so* much bespoke code) - Also switches from `graphql-iso-date` to `graphql-scalars`
- Loading branch information
1 parent
0247100
commit 1a92764
Showing
54 changed files
with
17,281 additions
and
6,818 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,27 @@ | ||
module.exports = { | ||
extends: "airbnb-typescript-prettier", | ||
extends: ["airbnb-typescript-prettier", "plugin:@next/next/recommended"], | ||
rules: { | ||
"import/prefer-default-export": 0, | ||
"react/jsx-props-no-spreading": 0, | ||
"react/require-default-props": 0, | ||
"no-unused-vars": [ | ||
"import/prefer-default-export": "off", | ||
"react/jsx-props-no-spreading": "off", | ||
"react/require-default-props": "off", | ||
"react/function-component-definition": [ | ||
"error", | ||
{ | ||
namedComponents: "arrow-function", | ||
unnamedComponents: "arrow-function", | ||
}, | ||
], | ||
"no-use-before-define": "off", | ||
"@typescript-eslint/no-use-before-define": ["error"], | ||
"import/extensions": "off", | ||
"no-unused-vars": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
argsIgnorePattern: "^_", | ||
varsIgnorePattern: "^_", | ||
}, | ||
], | ||
"react/jsx-no-useless-fragment": ["error", { allowExpressions: true }], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ bundle | |
.next | ||
.env | ||
.vercel | ||
tsconfig.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = { | ||
extends: ["airbnb-typescript-prettier"], | ||
rules: { | ||
"import/prefer-default-export": "off", | ||
"no-use-before-define": "off", | ||
"@typescript-eslint/no-use-before-define": ["error"], | ||
"import/extensions": "off", | ||
"no-unused-vars": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
argsIgnorePattern: "^_", | ||
varsIgnorePattern: "^_", | ||
}, | ||
], | ||
}, | ||
root: true, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.vercel | ||
.vercel | ||
tsconfig.tsbuildinfo |
Oops, something went wrong.
1a92764
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
app – ./
app-inboxcomics.vercel.app
www.inboxcomics.com
app-git-main-inboxcomics.vercel.app
inboxcomics.com