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, 14 Feb 2023 23:45:08 +0000 (23:45 +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 54f4264fa4703b525df4b93651f1f851be97b567..4deaed4a221f2687ce7535a85139afb6dc5cea7f 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.24.1")
+NODE_MIN_VERSION = StrictVersion("10.0")
 NPM_MIN_VERSION = StrictVersion("6.14.12")