We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd82a08 commit f958944Copy full SHA for f958944
3 files changed
src/node_metadata.cc
@@ -6,6 +6,7 @@
6
#include "node.h"
7
#include "util.h"
8
#include "uv.h"
9
+#include "uvwasi.h"
10
#include "v8.h"
11
#include "zlib.h"
12
@@ -90,6 +91,8 @@ Metadata::Versions::Versions() {
90
91
"." +
92
std::to_string(BrotliEncoderVersion() & 0xFFF);
93
94
+ uvwasi = UVWASI_VERSION_STRING;
95
+
96
#if HAVE_OPENSSL
97
openssl = GetOpenSSLVersion();
98
#endif
src/node_metadata.h
@@ -38,6 +38,7 @@ namespace node {
38
V(nghttp2) \
39
V(napi) \
40
V(llhttp) \
41
+ V(uvwasi)
42
43
44
#define NODE_VERSIONS_KEY_CRYPTO(V) V(openssl)
test/parallel/test-process-versions.js
@@ -13,6 +13,7 @@ const expected_keys = [
13
'nghttp2',
14
'napi',
15
'llhttp',
16
+ 'uvwasi',
17
];
18
19
if (common.hasCrypto) {
0 commit comments