Files
familysync/package.json
T
Lucas Berger dc31d4e1ec fix(ci): make root lint script a no-op-when-absent gate
pnpm -r lint exited 1 (ERR_PNPM_RECURSIVE_RUN_NO_SCRIPT) because no package
defines a lint script yet, failing the CI fast-checks job. Switch to
pnpm -r --if-present lint so it exits 0 today and gates automatically once a
lint script is added. (Lint tooling wiring remains out of scope.)
2026-06-11 14:29:08 -04:00

15 lines
482 B
JSON

{
"name": "familysync",
"private": true,
"packageManager": "pnpm@11.5.1",
"scripts": {
"dev:api": "pnpm --filter @familysync/api dev",
"dev:pwa": "pnpm --filter @familysync/pwa dev",
"build": "pnpm --filter @familysync/api build && pnpm --filter @familysync/pwa build",
"test": "pnpm --filter @familysync/api test",
"test:e2e": "pnpm --filter @familysync/pwa test:e2e",
"lint": "pnpm -r --if-present lint",
"typecheck": "pnpm -r typecheck"
}
}