node-linux-armv7l 16.11.1 → 16.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1499 -1396
- package/README.md +2 -2
- package/bin/node +0 -0
- package/include/node/config.gypi +1 -1
- package/include/node/node_version.h +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -202,7 +202,7 @@ For information about the governance of the Node.js project, see
|
|
|
202
202
|
* [targos](https://github.com/targos) -
|
|
203
203
|
**Michaël Zasso** \<targos@protonmail.com> (he/him)
|
|
204
204
|
* [tniessen](https://github.com/tniessen) -
|
|
205
|
-
**Tobias Nießen** \<tniessen@tnie.de>
|
|
205
|
+
**Tobias Nießen** \<tniessen@tnie.de> (he/him)
|
|
206
206
|
* [Trott](https://github.com/Trott) -
|
|
207
207
|
**Rich Trott** \<rtrott@gmail.com> (he/him)
|
|
208
208
|
|
|
@@ -438,7 +438,7 @@ For information about the governance of the Node.js project, see
|
|
|
438
438
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
439
439
|
**Tiancheng "Timothy" Gu** \<timothygu99@gmail.com> (he/him)
|
|
440
440
|
* [tniessen](https://github.com/tniessen) -
|
|
441
|
-
**Tobias Nießen** \<tniessen@tnie.de>
|
|
441
|
+
**Tobias Nießen** \<tniessen@tnie.de> (he/him)
|
|
442
442
|
* [trivikr](https://github.com/trivikr) -
|
|
443
443
|
**Trivikram Kamat** \<trivikr.dev@gmail.com>
|
|
444
444
|
* [Trott](https://github.com/Trott) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/config.gypi
CHANGED
|
@@ -247,10 +247,10 @@
|
|
|
247
247
|
'lib/internal/modules/esm/get_format.js',
|
|
248
248
|
'lib/internal/modules/esm/module_map.js',
|
|
249
249
|
'lib/internal/modules/esm/module_job.js',
|
|
250
|
-
'lib/internal/modules/esm/transform_source.js',
|
|
251
250
|
'lib/internal/modules/esm/loader.js',
|
|
252
251
|
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
253
252
|
'lib/internal/modules/esm/get_source.js',
|
|
253
|
+
'lib/internal/modules/esm/load.js',
|
|
254
254
|
'lib/internal/modules/cjs/helpers.js',
|
|
255
255
|
'lib/internal/modules/cjs/loader.js',
|
|
256
256
|
'lib/internal/console/constructor.js',
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 16
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 12
|
|
27
|
+
#define NODE_PATCH_VERSION 0
|
|
28
28
|
|
|
29
29
|
#define NODE_VERSION_IS_LTS 0
|
|
30
30
|
#define NODE_VERSION_LTS_CODENAME ""
|