Monorepo management for opam overlays
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

monopam: include monopam lint in the daily workflow

Document the lint pass between commit and push so the missing/unused
opam dep checks and stale-root-file warnings get a chance to surface
before changes leave the monorepo.

+7 -2
+7 -2
lib/root.ml
··· 67 67 git add path/to/file ... 68 68 git commit -m "Description of changes" 69 69 70 - # 5. Send them back to the upstream repos 70 + # 5. Lint: missing/unused opam deps and stale generated root files 71 + monopam lint 72 + 73 + # 6. Send them back to the upstream repos 71 74 monopam push 72 75 ``` 73 76 ··· 98 101 3. **Commit** your changes: `git add <files>` for the specific paths you 99 102 touched, then `git commit` (avoid `git add -A` — concurrent sessions 100 103 may have staged unrelated work) 101 - 4. **Push**: `monopam push` to send them upstream 104 + 4. **Lint**: `monopam lint` to flag missing/unused opam deps and stale 105 + generated root files (run `monopam lint --fix` to regenerate) 106 + 5. **Push**: `monopam push` to send them upstream 102 107 103 108 ## Important Notes 104 109