Scaffold pnpm monorepo with lint, format, and test tooling #1
Labels
No Label
area:auth
area:docs
area:export
area:ops
area:storage
area:supply-chain
auth
backend
blocked
collab
deployment
docs
effort:L
effort:M
effort:S
frontend
plugins
qa
vs-nfd
vs-nfd:blocker
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: stwaidele/dorfteich#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
Everything else builds on the repository skeleton. ADR 0001 defines a pnpm workspace monorepo with shared tooling.
Scope
Create the workspace layout
apps/web,apps/api,apps/collab,packages/shared(each with a placeholdersrc/index.tsandpackage.json), rootpnpm-workspace.yaml, stricttsconfig.base.json, repo-wide ESLint + Prettier config, Vitest configured per package, and root scriptslint,typecheck,test,buildthat run across all packages.Acceptance criteria
pnpm install && pnpm lint && pnpm typecheck && pnpm test && pnpm buildall succeed on a fresh clonepnpm lintpackages/sharedexports a sample function imported byapps/apito prove workspace linkingTechnical notes
Dependencies
None.
Size: ~1 day
Conventions: English code/comments, clear human-readable code, no hard-coded UI strings (ADR 0012, add
deanden), permission checks only via the shared guard (docs/architecture/permissions.md). Read the referenced ADRs before starting.