Is there a way to force aube to always generate pnpm-lock.yaml?
#1264
Unanswered
hilja
asked this question in
Troubleshooting and Bugs
Replies: 1 comment
|
Thanks for the report. I confirmed the behavior: For lockfile drift, deleting the file is not necessary today: # Repair only drifted entries and preserve pnpm-lock.yaml
aube install --fix-lockfile
# Or fully re-resolve while preserving pnpm-lock.yaml
aube install --no-frozen-lockfilePR #1271 adds a persistent creation default for projects that do want to delete every lockfile or start without one: # .npmrc
default-lockfile-format=pnpmWith that setting, AI-assisted — Tool: Codex; model: unavailable; version: unavailable. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
aube installworks fine with existingpnpm-lock.yamlandpnpm-workspace.yamlfiles. Like docs state:But if I have lock file drift and run
aube clean --lockfile(nukes the lock file) followed byaube install, it createsaube-lock.yaml. And now I haveaube-lock.yamlandpnpm-workspace.yaml.For compatibility reasons with other tools I'd sometimes liked to keep using
pnpm-lock.yaml.All reactions