Set up pnpm workspace for monorepo

This commit is contained in:
Lewis Wynne 2026-01-22 23:56:52 +00:00
commit 8d625b15cd
2 changed files with 13 additions and 0 deletions

11
package.json Normal file
View file

@ -0,0 +1,11 @@
{
"name": "ily",
"private": true,
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev:penfield": "pnpm --filter @ily/penfield dev",
"dev:blog": "pnpm --filter @ily/blog dev",
"build:penfield": "pnpm --filter @ily/penfield build",
"build:blog": "pnpm --filter @ily/blog build"
}
}

2
pnpm-workspace.yaml Normal file
View file

@ -0,0 +1,2 @@
packages:
- 'apps/*'