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>
Wed, 6 Jan 2021 22:38:33 +0000 (22:38 +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 d2249e42cc005233733f9e3292d2b227a0c69aed..99dde29f0dec819f7d175eb129fc2232723a55f6 100644 (file)
@@ -15,7 +15,7 @@ from mozboot.util import get_state_dir
 from mozfile import which
 from six import PY3
 
-NODE_MIN_VERSION = StrictVersion("10.21.0")
+NODE_MIN_VERSION = StrictVersion("10.0")
 NPM_MIN_VERSION = StrictVersion("6.14.4")