First, My operation is Mac, Linux. I am not sure what you have to do if you use window.
For update parts, Please do follow things.
First, make sure you use node >= 18, I am using node 18:alpine.
Second, everytime you try to build again, make sure you have already delete these folders:
- node_modules
- cache
- build
- package.lock.json (keep package.json)
Then run: npm install
Then run: npm update
If possible, put these commands in docker file.
Then run build.
If there is a failed build, please read log and check whether you have to install new dependencies or your current dependencies is old.
Like me it pop out 0.16.17 is old, I have to search through project to check whether which depedency is 0.16.17 and run update.
Thanks,
B/R