Skip to content

Commit 8ecfab1

Browse files
committed
Update minimum Node.js version to 15.0.0
This is about 2 years old, and the node website already provides newer versions both for latest and for LTS. However, other places are behind, for example the latest Ubuntu LTS (22) has Node 12, so perhaps we should wait on this. This is possible after emscripten-core/emsdk#829 made the emsdk install a 15.x version by default.
1 parent 518d9fe commit 8ecfab1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ to browse the changes between the tags.
1818

1919
See docs/process.md for more on how version tagging works.
2020

21+
Future
22+
-----
23+
- Bump the default minimum Node version from 10.19 to 15.0. To target the
24+
previous minimum version (10.19.0), use `-sMIN_NODE_VERSION=101900`.
25+
2126
3.1.36 (in development)
2227
-----------------------
2328
- The `USES_DYNAMIC_ALLOC` setting has been deprecated. You can get the same

src/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1796,7 +1796,7 @@ var MIN_CHROME_VERSION = 75;
17961796
// distinct from the minimum version required run the emscripten compiler.
17971797
// This version aligns with the current Ubuuntu TLS 20.04 (Focal).
17981798
// Version is encoded in MMmmVV, e.g. 1814101 denotes Node 18.14.01.
1799-
var MIN_NODE_VERSION = 101900;
1799+
var MIN_NODE_VERSION = 150000;
18001800

18011801
// Tracks whether we are building with errno support enabled. Set to 0
18021802
// to disable compiling errno support in altogether. This saves a little

0 commit comments

Comments
 (0)