File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,9 @@ conjunction with native stack and other runtime environment data.
131131added: v6.0.0
132132-->
133133
134+ Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
135+ ` ./configure --openssl-fips ` .)
136+
134137### ` --entry-type=type `
135138<!-- YAML
136139added: REPLACEME
@@ -144,9 +147,6 @@ the file extension and the `"type"` field in the nearest parent `package.json`.
144147
145148Works for executing a file as well as ` --eval ` , ` --print ` , ` STDIN ` .
146149
147- Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
148- ` ./configure --openssl-fips ` .)
149-
150150### ` --es-module-specifier-resolution=mode `
151151<!-- YAML
152152added: REPLACEME
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ void EnvironmentOptions::CheckOptions(std::vector<std::string>* errors) {
113113 " --experimental-modules to be enabled" );
114114 }
115115 if (module_type != " commonjs" && module_type != " module" ) {
116- errors->push_back (" --entry-type must \" module\" or \" commonjs\" " );
116+ errors->push_back (" --entry-type must be \" module\" or \" commonjs\" " );
117117 }
118118 }
119119
You can’t perform that action at this time.
0 commit comments