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>
Sat, 5 Mar 2022 22:31:23 +0000 (22:31 +0000)
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")