Merge pull request #4 from atridadl/dev

1.0.4
🐛 Data was re-fetched every time focus changed on the window. This has been fixed.
🚧 Deps updates
This commit is contained in:
Atridad Lahiji 2023-05-29 16:42:38 -06:00 committed by GitHub
commit 564b422650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 943 additions and 871 deletions

View file

@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:
* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
- Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
* The use of sexualized language or imagery, and sexual attention or
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
@ -60,7 +60,7 @@ representative at an online or offline event.
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
me@atridad.dev.
me@atri.dad.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the

View file

@ -1,6 +1,6 @@
{
"name": "sprintpadawan",
"version": "1.0.3",
"version": "1.0.4",
"description": "Plan. Sprint. Repeat.",
"private": true,
"scripts": {
@ -15,39 +15,39 @@
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "4.14.1",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.29.7",
"@trpc/client": "10.27.1",
"@trpc/next": "10.27.1",
"@trpc/react-query": "10.27.1",
"@trpc/server": "10.27.1",
"@tanstack/react-query": "^4.29.12",
"@trpc/client": "10.28.1",
"@trpc/next": "10.28.1",
"@trpc/react-query": "10.28.1",
"@trpc/server": "10.28.1",
"@types/json2csv": "^5.0.3",
"@types/next-pwa": "^5.6.2",
"ably": "^1.2.39",
"@types/next-pwa": "^5.6.4",
"ably": "^1.2.40",
"autoprefixer": "^10.4.14",
"daisyui": "^2.51.6",
"daisyui": "^2.52.0",
"fms-ts": "^0.1.7",
"json2csv": "6.0.0-alpha.2",
"next": "^13.4.3",
"next": "^13.4.4",
"next-auth": "^4.22.1",
"next-pwa": "^5.6.0",
"postcss": "^8.4.23",
"postcss": "^8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-icons": "^4.9.0",
"redicache-ts": "^0.1.1",
"superjson": "1.12.3",
"tailwindcss": "^3.3.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/node": "^20.2.3",
"@types/react": "^18.2.6",
"@types/eslint": "^8.40.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.3",
"eslint-config-next": "^13.4.4",
"prisma": "4.14.1",
"typescript": "^5.0.4"
},

1744
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -10,7 +10,7 @@ const Footer: React.FC = () => {
<GiTechnoHeart className="inline-block text-primary text-lg" /> by{" "}
<a
className="link link-primary link-hover"
href="https://atridad.dev"
href="https://atri.dad"
rel="noreferrer"
target="_blank"
>

View file

@ -28,6 +28,14 @@ export const api = createTRPCNext<AppRouter>({
*/
transformer: superjson,
queryClientConfig: {
defaultOptions: {
queries: {
refetchOnWindowFocus: false,
},
},
},
/**
* Links used to determine request flow from client to server.
*