-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Ran npm audit fix * Update minor/patch versions of dependencies * Update devdependencies * Revert next-auth * Bump next/next-auth versions * Run storybook upgrade * Fix types in implementation to support latest next-auth * Switch to ESM project-wide * Upgrade typescript * Bump node version to latest LTS * Update ava testrunner * Force peer dependency override * Replace rewiremock with quibble * Remove nextjs-server-modules * Remove npm install --force * Bump a few more dependencies * Bump @tanstack/react-query, note locked to v4 due to trpc dependency * Bump version for more tools * Bump mui
- Loading branch information
Showing
20 changed files
with
10,547 additions
and
17,626 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
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,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
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
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
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
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
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,7 +1,11 @@ | ||
module.exports = { | ||
const avaConfig = { | ||
timeout: "90s", | ||
files: ["src/**/*.test.ts"], | ||
extensions: ["ts"], | ||
require: ["@esbuild-kit/cjs-loader"], | ||
ignoredByWatcher: ["**/.next/**"], | ||
require: ["tsx"], | ||
nodeArguments: ["--no-warnings"], | ||
watchMode: { | ||
ignoreChanges: ["**/.next/**"], | ||
}, | ||
}; | ||
export default avaConfig; |
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 |
---|---|---|
|
@@ -19,4 +19,4 @@ const nextConfig = { | |
}, | ||
}; | ||
|
||
module.exports = nextConfig; | ||
export default nextConfig; |
Oops, something went wrong.