-
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.
This upgrade has been a long time in the making and I'm so happy it's done so I can move on to something else feat: switch to pnpm fix: upgrade remix-utils fix: upgrade partytown feat: upgrade growthbook packages and disable them temporarily fix: upgrade vite + vitest fix: upgrade some various core packages feat: replace react-select with a Tailwind based combobox fix: block bots from routes that consume Spotify fix: update sqlite timestamp triggers fix: load request values in loaders/actions instead of custom server
- Loading branch information
Showing
75 changed files
with
25,218 additions
and
33,595 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ node_modules | |
.env | ||
coverage | ||
data.db | ||
build |
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 @@ | ||
v16 | ||
v22 |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Links, Meta, Scripts, ScrollRestoration } from '@remix-run/react' | ||
|
||
import Tracking from '~/components/Tracking' | ||
import useTailwindTheme from '~/hooks/useTailwindTheme' | ||
|
||
const Document: React.FC<React.PropsWithChildren<{}>> = ({ children }) => { | ||
const { isDarkMode, pallete } = useTailwindTheme() | ||
|
||
return ( | ||
<html lang="en" data-theme={isDarkMode ? 'dark' : 'light'}> | ||
<head> | ||
<Meta /> | ||
<meta name="theme-color" content={pallete['base-100']} /> | ||
<Links /> | ||
<Tracking /> | ||
</head> | ||
<body id="album-mode-root"> | ||
{children} | ||
<ScrollRestoration /> | ||
<Scripts /> | ||
</body> | ||
</html> | ||
) | ||
} | ||
|
||
export default Document |
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
Oops, something went wrong.