List of small issues I've come across in my monorepo #602
Replies: 2 comments
-
|
Thanks for the consolidated bug list — opened https://github.com/endevco/aube/pull/610 with fixes for everything except the screenshot. Quick map: Lockfile not updated when a dep moves between sections — root cause:
Progress UI on Mac/fish/Ghostty — your screenshot was a font-rendering trap: Will land on merge. Thanks for the careful repro! This comment was generated by Claude. |
Beta Was this translation helpful? Give feedback.
-
|
Quick correction on the progress-UI bit: I dropped that change from #610 after looking at your Docker screenshot side-by-side with the Mac one. Docker uses the same The real fix is heartbeat-layer dedupe (don't emit a tick that's a near-duplicate of the previous one), which I'll do as a follow-up. The other four fixes from #610 are unaffected. This comment was generated by Claude. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
aube outdated
-r --recursiveflag doesn't include the project root, and you can't pass-w --workspaceaube update
-L-rdoesn't include rootupdateConfig.ignoreDependenciesshould also exclude the package from this listThe update command in pnpm is pretty borken too (but in different ways), has been for years :)
Lockfile not updated when package.json updated manually
In a workspace
package.json, if I move package fromdependencies:{ "dependencies": { "source-map-support": "catalog:", "msw": "catalog:" }, "devDependencies": { "@types/source-map-support": "catalog:", } }To
devDependencies:{ "dependencies": { "source-map-support": "catalog:", }, "devDependencies": { "@types/source-map-support": "catalog:", "msw": "catalog:" } }And hit
aube i,aube-lock.yamlwas not updated. I had to do a full nuke:aube clean -l && aube i. Is this a feature? pnpm updates lock file.Install progress tracker looks broken on Mac
Shell: fish, terminal: ghostty.
On docker it looks more like it should (I think) local run of
BUILDKIT_PROGRESS=plain docker compose -f docker-lgh.yml up -d --build(on slow 4g connection):For completeness, in GitHub Actions looks like it should:
Thanks for all the fast fixes so far!
Beta Was this translation helpful? Give feedback.
All reactions