Allow to build with older versions of nodejs 10
authorMike Hommey <mh@glandium.org>
Tue, 7 Apr 2020 23:43:20 +0000 (08:43 +0900)
committerMike Hommey <glandium@debian.org>
Tue, 28 Jun 2022 21:30:12 +0000 (22:30 +0100)
Gbp-Pq: Topic debian-hacks
Gbp-Pq: Name Allow-to-build-with-older-versions-of-nodejs-10.patch

python/mozbuild/mozbuild/nodeutil.py

index 95bedbcf84211643d2eebc7b0542727d671fcc7e..fef80cd5f378a2647f6ed600c0e7b8a238e56670 100644 (file)
@@ -13,7 +13,7 @@ from mozboot.util import get_tools_dir
 from mozfile import which
 from six import PY3
 
-NODE_MIN_VERSION = StrictVersion("10.23.1")
+NODE_MIN_VERSION = StrictVersion("10.0")
 NPM_MIN_VERSION = StrictVersion("6.14.10")