node-aix-ppc64 20.17.0 → 20.18.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 +342 -0
- package/LICENSE +10 -10
- package/README.md +21 -27
- package/bin/node +0 -0
- package/include/node/common.gypi +3 -5
- package/include/node/config.gypi +6 -0
- package/include/node/js_native_api.h +4 -0
- package/include/node/node.exp +312 -141
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +6 -3
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -165,9 +165,6 @@ Interpret as either ES modules or CommonJS modules input via --eval or STDIN, wh
|
|
|
165
165
|
.js or extensionless files with no sibling or parent package.json;
|
|
166
166
|
.js or extensionless files whose nearest parent package.json lacks a "type" field, unless under node_modules.
|
|
167
167
|
.
|
|
168
|
-
.It Fl -experimental-global-webcrypto
|
|
169
|
-
Expose the Web Crypto API on the global scope.
|
|
170
|
-
.
|
|
171
168
|
.It Fl -experimental-import-meta-resolve
|
|
172
169
|
Enable experimental ES modules support for import.meta.resolve().
|
|
173
170
|
.
|
|
@@ -191,6 +188,12 @@ Use this flag to enable ShadowRealm support.
|
|
|
191
188
|
.It Fl -experimental-test-coverage
|
|
192
189
|
Enable code coverage in the test runner.
|
|
193
190
|
.
|
|
191
|
+
.It Fl -experimental-test-module-mocks
|
|
192
|
+
Enable module mocking in the test runner.
|
|
193
|
+
.
|
|
194
|
+
.It Fl -experimental-eventsource
|
|
195
|
+
Enable experimental support for the EventSource Web API.
|
|
196
|
+
.
|
|
194
197
|
.It Fl -experimental-websocket
|
|
195
198
|
Enable experimental support for the WebSocket API.
|
|
196
199
|
.
|