Skip to content

Commit 448a676

Browse files
committed
updated documentation
1 parent 72bbed7 commit 448a676

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

Diff for: .github/workflows/check-i18n-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout repository
2626
uses: actions/checkout@v2
2727

28-
- name: Install Node.js 12.x
28+
- name: Install Node.js 14.x
2929
uses: actions/setup-node@v2
3030
with:
3131
node-version: '14.x'

Diff for: .github/workflows/i18n-nightly-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414

15-
- name: Install Node.js 12.x
15+
- name: Install Node.js 14.x
1616
uses: actions/setup-node@v2
1717
with:
1818
node-version: '14.x'

Diff for: .github/workflows/i18n-weekly-pull.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414

15-
- name: Install Node.js 12.x
15+
- name: Install Node.js 14.x
1616
uses: actions/setup-node@v2
1717
with:
1818
node-version: '14.x'

Diff for: BUILDING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Once you have all the tools installed, you can build the editor following these
4747

4848
1. Install the dependencies and build
4949
```sh
50-
yarn
50+
yarn --ignore-engines
5151
```
5252

5353
2. Rebuild the dependencies

Diff for: docs/internal/Arm.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@
22

33
Building the Pro IDE on Linux `armv7l` (aka `armhf`) and `aarch64` (aka `arm64`):
44

5-
1. Install Node.js 12.x with [nvm](https://github.com/nvm-sh/nvm#install--update-script):
5+
1. Install Node.js 14.x with [nvm](https://github.com/nvm-sh/nvm#install--update-script):
66
```
77
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
88
```
99
Restart your shell then:
1010
```
11-
nvm install 12.14.1
12-
nvm use 12.14.1
11+
nvm install 14
12+
nvm use 14
1313
```
1414
Verify:
1515
```
1616
node -v
17-
v12.14.1
1817
```
1918
2019
2. Install [Yarn](https://classic.yarnpkg.com/en/docs/install/#debian-stable):

0 commit comments

Comments
 (0)