File: allow-more-node-env.patch

package info (click to toggle)
node-node-sass 9.0.0%2Bgit20240724.107ded9%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 75,520 kB
  • sloc: javascript: 7,314; cpp: 1,495; perl: 428; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 638 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: let sass know about node 18 t64 abi and node 20
Forwarded: not-needed
Author: Jérémy Lal <kapouer@melix.org>
Reviewed-By: Yadd <yadd@debian.org>
Last-Update: 2024-03-31

--- a/lib/extensions.js
+++ b/lib/extensions.js
@@ -82,9 +82,11 @@
     case 88: return 'Node.js 15.x';
     case 93: return 'Node.js 16.x';
     case 102: return 'Node.js 17.x';
-    case 108: return 'Node.js 18.x';
+    case 108: case 109: return 'Node.js 18.x';
     case 111: return 'Node.js 19.x';
     case 115: return 'Node.js 20.x';
+    case 127: return 'Node.js 22.x';
+    case 137: return 'Node.js 24.x';
     default: return false;
   }
 }