Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WV-3260: Node v20.16.0 #5391

Merged
merged 1 commit into from
Aug 6, 2024
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN dnf install -y epel-release && \
xz
RUN mkdir -p /usr/local/nvm
ENV NVM_DIR=/usr/local/nvm
ENV NODE_VERSION=20.12.2
ENV NODE_VERSION=20.16.0
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash && \
. "$NVM_DIR/nvm.sh" && \
nvm install v${NODE_VERSION} && \
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"license": "NASA-1.3",
"repository": "nasa-gibs/worldview",
"engines": {
"node": ">= 20.12.2"
"node": ">= 20.16.0"
},
"scripts": {
"analyze": "cross-env ANALYZE_MODE=true NODE_ENV=production webpack",
Expand Down
2 changes: 1 addition & 1 deletion tasks/bamboo/linkReport.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -e -x

# Install node.js
NODE_VERSION=v18.15.0
NODE_VERSION=v20.16.0
curl -O https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.gz
tar xf node-${NODE_VERSION}-linux-x64.tar.gz &&
export PATH=$(pwd)/node-${NODE_VERSION}-linux-x64/bin:${PATH}
Expand Down
Loading