mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
Merge branch 'main' of https://github.com/ahmadk953/tasko into liveblocks
Update local dependencies
This commit is contained in:
commit
d988f334e7
7 changed files with 491 additions and 647 deletions
2
.github/workflows/eslint.yml
vendored
2
.github/workflows/eslint.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
|||
run: corepack enable
|
||||
|
||||
- name: Install Dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Run ESLint
|
||||
run: npx next lint
|
||||
|
|
4
.github/workflows/prettier.yml
vendored
4
.github/workflows/prettier.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
|||
run: corepack enable
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Check code format
|
||||
run: yarn prettier --check --ignore-path .prettierignore .
|
||||
run: yarn format
|
||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
|||
run: corepack enable
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Run tests
|
||||
run: yarn coverage
|
||||
|
|
|
@ -11,39 +11,6 @@ exports[`Home renders homepage unchanged 1`] = `
|
|||
<div
|
||||
class="mb-4 flex items-center rounded-full border bg-amber-100 p-4 uppercase text-amber-700 shadow-sm"
|
||||
>
|
||||
<svg
|
||||
class="lucide lucide-medal mr-2 h-6 w-6"
|
||||
fill="none"
|
||||
height="24"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
viewBox="0 0 24 24"
|
||||
width="24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"
|
||||
/>
|
||||
<path
|
||||
d="M11 12 5.12 2.2"
|
||||
/>
|
||||
<path
|
||||
d="m13 12 5.88-9.8"
|
||||
/>
|
||||
<path
|
||||
d="M8 7h8"
|
||||
/>
|
||||
<circle
|
||||
cx="12"
|
||||
cy="17"
|
||||
r="5"
|
||||
/>
|
||||
<path
|
||||
d="M12 18v-2h-.5"
|
||||
/>
|
||||
</svg>
|
||||
No 1 task management app
|
||||
</div>
|
||||
<h1
|
||||
|
|
|
@ -7,6 +7,12 @@ jest.mock('sonner', () => ({
|
|||
},
|
||||
}));
|
||||
|
||||
jest.mock('lucide-react', () => ({
|
||||
MoreHorizontal: () => null,
|
||||
X: () => null,
|
||||
Medal: () => null,
|
||||
}));
|
||||
|
||||
jest.mock('@/actions/update-list', () => ({
|
||||
updateList: jest.fn(),
|
||||
}));
|
||||
|
|
12
package.json
12
package.json
|
@ -17,14 +17,14 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@arcjet/next": "^1.0.0-alpha.34",
|
||||
"@clerk/nextjs": "^6.9.7",
|
||||
"@clerk/nextjs": "^6.9.9",
|
||||
"@hello-pangea/dnd": "^17.0.0",
|
||||
"@liveblocks/client": "^2.15.1",
|
||||
"@liveblocks/node": "^2.15.1",
|
||||
"@liveblocks/react": "^2.15.1",
|
||||
"@mdx-js/loader": "^3.1.0",
|
||||
"@mdx-js/react": "^3.1.0",
|
||||
"@next/mdx": "^15.1.3",
|
||||
"@next/mdx": "^15.1.4",
|
||||
"@prisma/client": "^6.2.1",
|
||||
"@prisma/extension-accelerate": "^1.2.1",
|
||||
"@radix-ui/react-accordion": "^1.2.2",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"@radix-ui/react-tooltip": "^1.1.6",
|
||||
"@radix-ui/react-visually-hidden": "^1.1.0",
|
||||
"@sentry/nextjs": "8",
|
||||
"@tanstack/react-query": "^5.62.16",
|
||||
"@tanstack/react-query": "^5.63.0",
|
||||
"@vercel/analytics": "^1.4.1",
|
||||
"@vercel/speed-insights": "^1.1.0",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"date-fns": "^4.1.0",
|
||||
"dompurify": "^3.2.3",
|
||||
"lodash": "^4.17.21",
|
||||
"lucide-react": "^0.469.0",
|
||||
"lucide-react": "^0.471.0",
|
||||
"next": "^15.1.4",
|
||||
"react": "^19.0.0",
|
||||
"react-day-picker": "^9.5.0",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"@eslint/eslintrc": "^3.1.0",
|
||||
"@eslint/js": "^9.16.0",
|
||||
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
||||
"@next/eslint-plugin-next": "15.1.3",
|
||||
"@next/eslint-plugin-next": "15.1.4",
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
"@testing-library/jest-dom": "^6.6.3",
|
||||
|
@ -103,5 +103,5 @@
|
|||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"vitest": "^2.1.8"
|
||||
},
|
||||
"packageManager": "yarn@4.5.3"
|
||||
"packageManager": "yarn@4.6.0"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue