Skip to content

Commit 65052c4

Browse files
committed
Update minimum Node version to Node 12
1 parent a4495f4 commit 65052c4

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22

33
node_js:
4-
- "10"
4+
- 12
55

66
matrix:
77
include:

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ An IDE and Management Tool for FusionDB.
77

88
This repository holds the code for packaging the IDE as a client Desktop application. To use this with FusionDB you will also need the server-side API installed, you can find that here: [fusion-studio-api](https://github.com/evolvedbinary/fusion-studio-api).
99

10+
The latest reslease version is available for download from https://fusiondb.com.
11+
1012
## Building
1113

1214
### Prerequisites
13-
* Node.js 10.16.3
15+
* Node.js >= 12.18.3
1416
```bash
1517
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
16-
$ nvm install 10
18+
$ nvm install 12
1719
```
1820

1921
* yarn 1.17.3+
@@ -23,7 +25,7 @@ This repository holds the code for packaging the IDE as a client Desktop applica
2325

2426
* Git 2.11+
2527
* Java 8+ (Currently, Java 9 is not supported.)
26-
* Python 2.7.x (Python 3, is not supported.)
28+
* Python 2.7.x or Python 3
2729
* rpmbuild (for building RPM's on Linux)
2830
* Apple Developer Certificate and Account (for signing DMG's on macOS)
2931

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '{branch}-{build}'
22

33
environment:
4-
nodejs_version: "10"
4+
nodejs_version: 12
55
YARN_GPG: no
66

77
matrix:
@@ -14,7 +14,7 @@ cache:
1414
- '%APPDATA%\npm-cache' # npm cache
1515

1616
# used on Ubuntu
17-
stack: node 10
17+
stack: node 12
1818

1919
install:
2020
- cmd: PowerShell.exe "Install-Product node $env:nodejs_version"

0 commit comments

Comments
 (0)