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

Update Node version to v20.12.2 #330

Merged
merged 1 commit into from
Apr 30, 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 .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
node-version:
- 18.16.0
- 20.12.2
pnpm-version:
- 8.15.6
steps:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v20
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
FROM amazonlinux:2022
ARG NEPTUNE_NOTEBOOK
ENV NVM_DIR /root/.nvm
ENV NODE_VERSION v16.20.2
ENV PNPM_VERSION 8.15.6
ENV NODE_VERSION v20.12.2
WORKDIR /
COPY . /graph-explorer/
WORKDIR /graph-explorer
Expand All @@ -12,12 +11,12 @@ WORKDIR /graph-explorer
RUN yum update -y && \
yum install -y tar gzip git findutils openssl && \
mkdir -p $NVM_DIR && \
curl -o- https://github.com/nvm-sh/nvm/v0.39.5/install.sh | bash && \
curl -o- https://github.com/nvm-sh/nvm/v0.39.7/install.sh | bash && \
source $NVM_DIR/nvm.sh && \
nvm install $NODE_VERSION && \
nvm alias default $NODE_VERSION && \
nvm use $NODE_VERSION && \
npm install -g pnpm@${PNPM_VERSION} && \
corepack enable && \
pnpm install && \
yum clean all && \
yum remove -y tar gzip findutils && \
Expand Down
2 changes: 1 addition & 1 deletion additionaldocs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This developer README details instructions for building on top of the graph-expl

### Requirements
- pnpm >=8.15.6
- node >=16.15.1
- node >=20.12.2

### Supported Graph Types
- Labelled Property Graph (PG) using Gremlin or openCypher
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Graph Explorer",
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f",
"engines": {
"node": ">=16.15.1"
"node": ">=20.12.2"
},
"scripts": {
"prepare": "husky install",
Expand Down
4 changes: 2 additions & 2 deletions packages/graph-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.6.0",
"description": "Graph Explorer",
"engines": {
"node": ">=16.15.1"
"node": ">=20.12.2"
},
"scripts": {
"test": "jest",
Expand Down Expand Up @@ -106,7 +106,7 @@
"@types/history": "4.7.11",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.195",
"@types/node": "^17.0.45",
"@types/node": "^20.12.7",
"@types/papaparse": "^5.3.7",
"@types/react": "^17.0.62",
"@types/react-beautiful-dnd": "^13.1.4",
Expand Down
Loading
Loading