Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ function lint() {

## deps - updates project dependencies to latest
function deps() {
# Use NVM
if [[ ! -d "$NVM_DIR" ]] ; then
echo "Please activate nvm"
exit 1
fi

# Use the minimum node version to run the updates.
nvm use 18

npm update --save
# When we run this on a cloudtop, the urls in package-lock.json are replaced
# with an internal server. We need to manually update package-lock.json
Expand Down
Loading
Loading