Skip to content

Commit

Permalink
chore: use pnpm instead of yarn as package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
henriqpohl committed Feb 1, 2024
1 parent 4e35878 commit 0976206
Show file tree
Hide file tree
Showing 9 changed files with 5,160 additions and 4,925 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ dist

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Misc
.DS_Store
Expand Down
Empty file added .npmrc
Empty file.
8 changes: 4 additions & 4 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"ui": "*",
"ui": "workspace:*",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.2",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/eslint": "^8.44.7",
"@types/node": "^17.0.12",
"@types/react": "^18.0.22",
Expand All @@ -28,4 +28,4 @@
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2"
}
}
}
8 changes: 4 additions & 4 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"ui": "*",
"ui": "workspace:*",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.2",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/eslint": "^8.44.7",
"@types/node": "^17.0.12",
"@types/react": "^18.0.22",
Expand All @@ -28,4 +28,4 @@
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2"
}
}
}
16 changes: 6 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.1.0",
"turbo": "latest"
"turbo": "1.11.1"
},
"packageManager": "pnpm@8.15.1",
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.21",
"workspaces": [
"apps/*",
"packages/*"
]
}
}
}
9 changes: 4 additions & 5 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint . --max-warnings 0",
"generate:component": "turbo gen react-component"
"lint": "eslint . --max-warnings 0"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^1.10.12",
"@types/eslint": "^8.44.7",
"@types/node": "^20.5.2",
Expand All @@ -29,4 +28,4 @@
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7"
}
}
}
Loading

0 comments on commit 0976206

Please sign in to comment.