This commit is contained in:
2025-09-18 09:30:30 -06:00
parent b2103a7359
commit e3de5342ce
3 changed files with 17 additions and 1 deletions

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "glowtrack",
"private": true,
"version": "0.0.0",
"description": "GlowTrack monorepo root (pnpm workspaces)",
"scripts": {
"build": "pnpm -r --if-present build",
"test": "pnpm -r --if-present test",
"lint": "pnpm -r --if-present lint",
"typecheck": "pnpm -r --if-present typecheck || pnpm -r --if-present check",
"format": "pnpm -r --if-present format"
}
}

3
pnpm-workspace.yaml Normal file
View File

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

View File

@@ -32,7 +32,7 @@ Paths below are absolute to this repo.
- Add .envrc (optional) to auto-enter devShell - Add .envrc (optional) to auto-enter devShell
- Dependencies: T001 - Dependencies: T001
- [ ] T003 Initialize pnpm workspaces - [X] T003 Initialize pnpm workspaces
- Create /home/jawz/Development/Projects/GlowTrack/package.json (private workspace root) with scripts: lint, test, build, typecheck, format - Create /home/jawz/Development/Projects/GlowTrack/package.json (private workspace root) with scripts: lint, test, build, typecheck, format
- Create /home/jawz/Development/Projects/GlowTrack/pnpm-workspace.yaml listing apps/* and packages/* - Create /home/jawz/Development/Projects/GlowTrack/pnpm-workspace.yaml listing apps/* and packages/*
- Dependencies: T001 - Dependencies: T001