Skip to content

Commit

Permalink
Merge pull request #9 from theRAPTLab/dev-vertex/nodejs-18-upgrade
Browse files Browse the repository at this point in the history
Core platform update to Node version 18
  • Loading branch information
dsriseah authored Jun 12, 2024
2 parents 9a09938 + 2b0e823 commit b39f1e0
Show file tree
Hide file tree
Showing 57 changed files with 19,602 additions and 17,370 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.9.0
lts/hydrogen
8 changes: 6 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"printWidth": 100,
"singleQuote": true
"semi": true,
"printWidth": 86,
"singleQuote": true,
"quoteProps": "preserve",
"arrowParens": "avoid",
"trailingComma": "none"
}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ Running the system involves building and packaging the application, and starting

### I.A. Check Out Local Server Code

This assumes you've already installed NodeJS. If you haven't, we recommend using [nvm](https://github.com/nvm-sh/nvm). This will allow you to select different Node versions. As of November 2019, we are currently using Node Version 10.9.0.
This assumes you've already installed NodeJS. If you haven't, we recommend using [nvm](https://github.com/nvm-sh/nvm). This will allow you to select different Node versions. As of June 11th, 2024, we are using the latest release of LTS/Hydrogen (v18.20.3).

1. Check out the `dev` branch.
1. If you're using `nvm`, type `nvm use` to auto-load the recommended Node version (10.9.0). You may also need to type `nvm install` to install 10.9 if it's not already installed on your machine.
2. `npm ci` -- You might need to install some packages before doing a clean.
3. `npm run clean:all` -- Remove all existing database and node modules.
4. `npm ci` -- Install node modules
2. If you're using `nvm`, type `nvm use` to auto-load the recommended Node version (lts/hydrogen, currently 18.20.3). You may also need to type `nvm install` to install this version if it's not already installed on your machine.
3. `npm ci` -- You might need to install some packages before doing a clean.
4. `npm run clean:all` -- Remove all existing database and node modules.
5. `npm ci` -- Install node modules

### I.B. Download Resources

Expand Down
Loading

0 comments on commit b39f1e0

Please sign in to comment.