Updating the dependencies of a project can be tedious. However, neglecting to update project dependencies is not a good idea either đŹ. In this post, I will share how I usually update my projects, focusing on AstroPaper as an example. Nonetheless, these steps can be applied to other js/node projects as well.
Table of contents
Open Table of contents
Updating Package Dependencies
There are several ways to update dependencies, and Iâve tried various methods to find the easiest path. One way to do it is by manually updating each package using npm install package-name@latest
. This method is the most straightforward way of updating. However, it may not be the most efficient option.
My recommended way of updating dependencies is by using the npm-check-updates package. Thereâs a good article from freeCodeCamp about that, so I wonât be explaining the details of what it is and how to use that package. Instead, Iâll show you my typical approach.
First, install npm-check-updates
package globally.
npm install -g npm-check-updates
Before making any updates, itâs a good idea to check all new dependencies that can be updated.
ncu
Most of the time, patch dependencies can be updated without affecting the project at all. So, I usually update patch dependencies by running either ncu -i --target patch
or ncu -u --target patch
. The difference is that ncu -u --target patch
will update all the patches, while ncu -i --target patch
will give an option to toggle which package to update. Itâs up to you to decide which approach to take.
The next part involves updating minor dependencies. Minor package updates usually wonât break the project, but it is always good to check the release notes of the respective packages. These minor updates often include some cool features that can be applied to our projects.
ncu -i --target minor
Last but not least, there might be some major package updates in the dependencies. So, check the rest of the dependency updates by running
ncu -i
If there are any major updates (or some updates you still have to make), the above command will output those remaining packages. If the package is a major version update, you have to be very careful since this will likely break the whole project. Therefore, please read the respective release note (or) docs very carefully and make changes accordingly.
If you run ncu -i
and found no more packages to be updated, Congrats!!! you have successfully updated all the dependencies in your project.
Updating AstroPaper template
Like other open-source projects, AstroPaper is evolving with bug fixes, feature updates, and so on. So if youâre someone who is using AstroPaper as a template, you might also want to update the template when thereâs a new release.
The thing is, you might already have updated the template according to your flavor. Therefore, I canât exactly show âthe one-size-fits-all perfect wayâ to update the template to the most recent release. However, here are some tips to update the template without breaking your repo. Keep in mind that, most of the time, updating the package dependencies might be sufficient for you.
Files and Directories to keep in mind
In most cases, the files and directories you might not want to override (as youâve likely updated those files) are src/content/blog/
, src/config.ts
, src/pages/about.md
, and other assets & styles like public/
and src/styles/base.css
.
If youâre someone who only updates the bare minimum of the template, it should be okay to replace everything with the latest AstroPaper except the above files and directories. Itâs like pure Android OS and other vendor-specific OSes like OneUI. The less you modify the base, the less you have to update.
You can manually replace every file one by one, or you can use the magic of git to update everything. I wonât show you the manual replacement process since it is very straightforward. If youâre not interested in that straightfoward and inefficient method, bear with me đ».
Updating AstroPaper using Git
IMPORTANT!!!
Only do the following if you know how to resolve merge conflicts. Otherwise, youâd better replace files manually or update dependencies only.
First, add astro-paper as the remote in your project.
git remote add astro-paper https://github.com/satnaing/astro-paper.git
Checkout to a new branch in order to update the template. If you know what youâre doing and youâre confident with your git skill, you can omit this step.
git checkout -b build/update-astro-paper
Then, pull the changes from astro-paper by running
git pull astro-paper main
If you face fatal: refusing to merge unrelated histories
error, you can resolve that by running the following command
git pull astro-paper main --allow-unrelated-histories
After running the above command, youâre likely to encounter conflicts in your project. Youâll need to resolve these conflicts manually and make the necessary adjustments according to your needs.
After resolving the conflicts, test your blog thoroughly to ensure everything is working as expected. Check your articles, components, and any customizations you made.
Once youâre satisfied with the result, itâs time to merge the update branch into your main branch (only if you are updating the template in another branch). Congratulations! Youâve successfully updated your template to the latest version. Your blog is now up-to-date and ready to shine! đ
Conclusion
In this article, Iâve shared some of my insights and processes for updating dependencies and the AstroPaper template. I genuinely hope this article proves valuable and assists you in managing your projects more efficiently.
If you have any alternative or improved approaches for updating dependencies/AstroPaper, I would love to hear from you. Thus, donât hesitate to start a discussion in the repository, email me, or open an issue. Your input and ideas are highly appreciated!
Please understand that my schedule is quite busy these days, and I may not be able to respond quickly. However, I promise to get back to you as soon as possible. đŹ
Thank you for taking the time to read this article, and I wish you all the best with your projects!