Skip to content

Commit 539bea9

Browse files
committed
Update node version to 16.14.2
1 parent 2d7456b commit 539bea9

File tree

5 files changed

+982
-1069
lines changed

5 files changed

+982
-1069
lines changed

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.13.0
1+
16.14.2

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo: required
22
language: node_js
33
node_js:
4-
- "16.13.0"
4+
- "16.14.2"
55

66
cache:
77
directories:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.13.0 as base
1+
FROM node:16.14.2 as base
22
ENV APP_HOME=/usr/src/app \
33
TERM=xterm
44
RUN mkdir -p $APP_HOME

contributor_docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Follow these instructions to set up your development environment, which you need
66

77
_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`.
88

9-
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.
9+
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.
1010
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.
1111
3. [Clone](https://help.github.com/articles/cloning-a-repository/) your new fork of the repository from GitHub onto your local computer.
1212

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

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

2020
```

0 commit comments

Comments
 (0)