Commit 4bca460
Fix docs build race condition by using build:self
The docs build scripts were running 'pnpm run --filter @fedify/* -r build',
which caused each package's build script to recursively build its dependencies
via 'pnpm --filter @fedify/xxx... run build:self'. When multiple packages ran
in parallel, they would try to build shared dependencies concurrently, causing
race conditions on dist/ directories.
Changed to 'pnpm run --filter @fedify/* -r build:self' so pnpm manages the
dependency order and builds each package exactly once.
Co-Authored-By: Claude <[email protected]>1 parent 47cd266 commit 4bca460
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
67 | | - | |
68 | | - | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
0 commit comments