node-aix-ppc64 22.0.0 → 22.1.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 +147 -0
- package/LICENSE +3 -33
- package/README.md +40 -38
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -2
- package/include/node/node.exp +13670 -12839
- package/include/node/node.h +1 -0
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +5 -1
package/include/node/node.h
CHANGED
|
@@ -537,6 +537,7 @@ class EmbedderSnapshotData {
|
|
|
537
537
|
// If the snapshot is invalid, this returns an empty pointer.
|
|
538
538
|
static Pointer FromFile(FILE* in);
|
|
539
539
|
static Pointer FromBlob(const std::vector<char>& in);
|
|
540
|
+
static Pointer FromBlob(std::string_view in);
|
|
540
541
|
|
|
541
542
|
// Write this EmbedderSnapshotData object to an output file.
|
|
542
543
|
// Calling this method will not close the FILE* handle.
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -442,7 +442,11 @@ option set.
|
|
|
442
442
|
.
|
|
443
443
|
.It Fl -test-shard
|
|
444
444
|
Test suite shard to execute in a format of <index>/<total>.
|
|
445
|
-
|
|
445
|
+
.
|
|
446
|
+
.It Fl -test-skip-pattern
|
|
447
|
+
A regular expression that configures the test runner to skip tests
|
|
448
|
+
whose name matches the provided pattern.
|
|
449
|
+
.
|
|
446
450
|
.It Fl -test-timeout
|
|
447
451
|
A number of milliseconds the test execution will fail after.
|
|
448
452
|
.
|