Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank1513 committed Jan 4, 2024
1 parent cc67061 commit 5a7a2d9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"deploy": "npm run build:all && cd dist && vsce publish"
},
"dependencies": {
"@mayank1513/fork-me": "^2.0.0",
"@mayank1513/fork-me": "^2.0.1",
"nanoid": "^5.0.4",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
Expand All @@ -24,30 +24,30 @@
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.85.0",
"@types/vscode-webview": "^1.57.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/coverage-v8": "^1.1.1",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^23.0.1",
"octokit": "^3.1.2",
"sass": "^1.69.5",
"sass": "^1.69.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.1"
},
"keywords": [
"project-management",
Expand Down
3 changes: 1 addition & 2 deletions src/components/task/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ export default function Task({ task, index }: { task: TaskType; index: number })
return (
<Draggable draggableId={task.id} index={index}>
{(provided, snapshot) => {
if (snapshot.isDragging && provided.draggableProps.style?.transform) {
if (snapshot.isDragging && provided.draggableProps.style?.transform)
provided.draggableProps.style.transform += " rotate(5deg)";
}
return (
<label
onClick={() => {
Expand Down

0 comments on commit 5a7a2d9

Please sign in to comment.