Compare commits

...

12 commits

Author SHA1 Message Date
dependabot[bot]
9378c8ee20
Bump tailwindcss from 3.4.17 to 4.0.6
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) from 3.4.17 to 4.0.6.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.6/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-12 03:27:13 +00:00
Ahmad
c84f172986
Merge pull request #1038 from ahmadk953/sentry-v9
Some checks are pending
ESLint / Run eslint scanning (push) Waiting to run
Code Format Check / check-format (push) Waiting to run
Run tests and upload coverage / Run tests and collect coverage (push) Waiting to run
2025-02-11 22:25:25 -05:00
Ahmad
2895a6f421
Fix Compile Issues 2025-02-11 21:28:45 -05:00
Ahmad
bdc28f40c8
Upgrade to Sentry v9 2025-02-11 21:21:20 -05:00
Ahmad
e8f6ad1f21
Merge branch 'main' of https://github.com/ahmadk953/tasko into card-list-improvements 2025-02-11 21:14:25 -05:00
Ahmad
6da0b65a1f
Merge pull request #1034 from ahmadk953/dependabot/npm_and_yarn/eslint/js-9.20.0
Bump @eslint/js from 9.19.0 to 9.20.0
2025-02-11 18:38:26 -05:00
Ahmad
a1195f1568
Merge pull request #1035 from ahmadk953/dependabot/npm_and_yarn/prettier-3.5.0
Bump prettier from 3.4.2 to 3.5.0
2025-02-11 18:38:18 -05:00
Ahmad
8f9c938988
Merge pull request #1037 from ahmadk953/dependabot/npm_and_yarn/eslint-config-next-15.1.7
Bump eslint-config-next from 15.1.6 to 15.1.7
2025-02-11 18:37:54 -05:00
dependabot[bot]
60681d3812
Bump eslint-config-next from 15.1.6 to 15.1.7
Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 15.1.6 to 15.1.7.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.7/packages/eslint-config-next)

---
updated-dependencies:
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-11 17:13:05 +00:00
dependabot[bot]
8274c5bad3
Bump prettier from 3.4.2 to 3.5.0
Bumps [prettier](https://github.com/prettier/prettier) from 3.4.2 to 3.5.0.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.4.2...3.5.0)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-11 17:12:19 +00:00
dependabot[bot]
ecc820e6dc
Bump @eslint/js from 9.19.0 to 9.20.0
Bumps [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) from 9.19.0 to 9.20.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.20.0/packages/js)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-11 17:12:04 +00:00
Ahmad
294df32da1
Licence and Dependency Updates 2025-01-30 21:01:06 -05:00
6 changed files with 699 additions and 1322 deletions

View file

@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright 2024 ahmadk953
Copyright 2025 Ahmad Khan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View file

@ -2,7 +2,7 @@
import * as React from 'react';
import { ChevronLeft, ChevronRight } from 'lucide-react';
import { Chevron, DayPicker } from 'react-day-picker';
import { DayPicker } from 'react-day-picker';
import { cn } from '@/lib/utils';
import { buttonVariants } from '@/components/ui/button';
@ -22,49 +22,44 @@ function Calendar({
classNames={{
months: 'flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0',
month: 'space-y-4',
month_caption: 'flex justify-center pt-1 relative items-center',
caption: 'flex justify-center pt-1 relative items-center',
caption_label: 'text-sm font-medium',
nav: 'space-x-1 flex items-center',
button_previous: cn(
nav_button: cn(
buttonVariants({ variant: 'outline' }),
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100 absolute left-1 top-3'
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100'
),
button_next: cn(
buttonVariants({ variant: 'outline' }),
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100 absolute right-1 top-3'
),
month_grid: 'w-full border-collapse space-y-1',
weekdays: 'flex',
weekday:
nav_button_previous: 'absolute left-1',
nav_button_next: 'absolute right-1',
table: 'w-full border-collapse space-y-1',
head_row: 'flex',
head_cell:
'text-muted-foreground rounded-md w-9 font-normal text-[0.8rem]',
week: 'flex w-full mt-2',
day: 'h-9 w-9 text-center text-sm p-0 relative [&:has([aria-selected].range-end)]:rounded-r-md [&:has([aria-selected].outside)]:bg-accent/50 [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20',
day_button: cn(
row: 'flex w-full mt-2',
cell: 'h-9 w-9 text-center text-sm p-0 relative [&:has([aria-selected].day-range-end)]:rounded-r-md [&:has([aria-selected].day-outside)]:bg-accent/50 [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20',
day: cn(
buttonVariants({ variant: 'ghost' }),
'h-9 w-9 p-0 font-normal aria-selected:opacity-100'
),
range_end: 'day-range-end',
selected:
'bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground rounded-md',
today: 'bg-accent text-accent-foreground rounded-md',
outside:
'day-outside text-muted-foreground opacity-50 aria-selected:bg-accent/50 aria-selected:text-muted-foreground aria-selected:opacity-30',
disabled: 'text-muted-foreground opacity-50',
range_middle:
day_range_end: 'day-range-end',
day_selected:
'bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground',
day_today: 'bg-accent text-accent-foreground',
day_outside:
'day-outside text-muted-foreground aria-selected:bg-accent/50 aria-selected:text-muted-foreground',
day_disabled: 'text-muted-foreground opacity-50',
day_range_middle:
'aria-selected:bg-accent aria-selected:text-accent-foreground',
hidden: 'invisible',
day_hidden: 'invisible',
...classNames,
}}
components={{
Chevron: (props) => {
if (props.orientation === 'left')
return <ChevronLeft className='h-4 w-4' />;
if (props.orientation === 'right')
return <ChevronRight className='h-4 w-4' />;
return <Chevron {...props} />;
},
IconLeft: ({ className, ...props }) => (
<ChevronLeft className={cn('h-4 w-4', className)} {...props} />
),
IconRight: ({ className, ...props }) => (
<ChevronRight className={cn('h-4 w-4', className)} {...props} />
),
}}
{...props}
/>

View file

@ -88,9 +88,6 @@ export default withContentCollections(
// side errors will fail.
tunnelRoute: '/monitoring',
// Hides source maps from generated client bundles
hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true,

View file

@ -39,7 +39,7 @@
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@sentry/nextjs": "8",
"@sentry/nextjs": "9",
"@tanstack/react-query": "^5.66.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.1.0",
@ -53,7 +53,7 @@
"next": "^15.1.6",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-day-picker": "^9.5.1",
"react-day-picker": "8.10.1",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"sonner": "^1.7.4",
@ -72,7 +72,7 @@
"@content-collections/mdx": "^0.2.0",
"@content-collections/next": "^0.2.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.19.0",
"@eslint/js": "^9.20.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@next/eslint-plugin-next": "15.1.6",
"@tailwindcss/typography": "^0.5.16",
@ -93,7 +93,7 @@
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"fluid-tailwind": "^1.0.4",
@ -101,10 +101,10 @@
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.16",
"tailwindcss": "^4.0.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},

View file

@ -8,9 +8,8 @@ Sentry.init({
dsn: 'https://bb697105eaabbc6f70af12e84e936ded@o4508368569368576.ingest.us.sentry.io/4508368582017024',
integrations: [
Sentry.redisIntegration({
cachePrefixes: [''],
}),
Sentry.redisIntegration({ cachePrefixes: [''] }),
Sentry.prismaIntegration(),
],
// Set tracesSampleRate to 1.0 to capture 100%

1940
yarn.lock

File diff suppressed because it is too large Load diff