Skip to content

Commit

Permalink
Update node version to 16.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
catarak committed Apr 13, 2022
1 parent 2d7456b commit 539bea9
Show file tree
Hide file tree
Showing 5 changed files with 982 additions and 1,069 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13.0
16.14.2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sudo: required
language: node_js
node_js:
- "16.13.0"
- "16.14.2"

cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.13.0 as base
FROM node:16.14.2 as base
ENV APP_HOME=/usr/src/app \
TERM=xterm
RUN mkdir -p $APP_HOME
Expand Down
4 changes: 2 additions & 2 deletions contributor_docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Follow these instructions to set up your development environment, which you need

_Note_: The installation steps assume you are using a Unix-like shell. If you are using Windows, you will need to use `copy` instead of `cp`.

1. Install Node.js. The recommended way is to Node through [nvm](https://github.com/nvm-sh/nvm). You can also install [node.js](https://nodejs.org/download/release/v16.13.0/) version 16.13.0 directly from the Node.js website.
1. Install Node.js. The recommended way is to Node through [nvm](https://github.com/nvm-sh/nvm). You can also install [node.js](https://nodejs.org/download/release/v16.14.2/) version 16.14.2 directly from the Node.js website.
2. [Fork](https://help.github.com/articles/fork-a-repo) the [p5.js Web Editor repository](https://github.com/processing/p5.js-web-editor) into your own GitHub account.
3. [Clone](https://help.github.com/articles/cloning-a-repository/) your new fork of the repository from GitHub onto your local computer.

```
$ git clone https://github.com/YOUR_USERNAME/p5.js-web-editor.git
```

4. If you are using nvm, run `$ nvm use` to set your Node version to 16.13.0
4. If you are using nvm, run `$ nvm use` to set your Node version to 16.14.2
5. Navigate into the project folder and install all its necessary dependencies with npm.

```
Expand Down
Loading

0 comments on commit 539bea9

Please sign in to comment.