-
For libraries, for applications, for action scripts e.g. running in GitHub Actions. I wonder if it's a good practice to check in the lockfile to VCS or it's necessary. cc @frostming |
Beta Was this translation helpful? Give feedback.
Answered by
pawamoy
Mar 16, 2024
Replies: 1 comment 1 reply
-
Usually, applications projects track their lockfile (end-user apps, never used as libraries). I know some library projects that track their lockfile too. There are some pros and cons. I myself do not track lockfiles for my libraries: I prefer letting CI break early so I can fix any issue gradually. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tisonkun
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usually, applications projects track their lockfile (end-user apps, never used as libraries). I know some library projects that track their lockfile too. There are some pros and cons. I myself do not track lockfiles for my libraries: I prefer letting CI break early so I can fix any issue gradually.