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;
}
}
|