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

Core platform update to Node version 18 #9

Merged
merged 17 commits into from
Jun 12, 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 .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