Skip to content

Commit 6dcbc61

Browse files
refactor: Move pnpm configuration to pnpm-workspace.yaml
- Removed the pnpm configuration section from package.json. - Created a new pnpm-workspace.yaml file to manage onlyBuiltDependencies. - This change helps in organizing
1 parent 6ee502f commit 6dcbc61

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

package.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,6 @@
7373
"vite-plugin-svgr": "^4.3.0",
7474
"vitest": "^3.2.0"
7575
},
76-
"pnpm": {
77-
"onlyBuiltDependencies": [
78-
"@swc/core",
79-
"@tailwindcss/oxide",
80-
"esbuild",
81-
"msw",
82-
"unrs-resolver"
83-
]
84-
},
8576
"volta": {
8677
"node": "22.17.0"
8778
}

pnpm-workspace.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
onlyBuiltDependencies:
2+
- '@swc/core'
3+
- '@tailwindcss/oxide'
4+
- esbuild
5+
- msw
6+
- unrs-resolver

0 commit comments

Comments
 (0)