File tree 2 files changed +4
-4
lines changed
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.
131
131
added: v6.0.0
132
132
-->
133
133
134
+ Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
135
+ ` ./configure --openssl-fips ` .)
136
+
134
137
### ` --entry-type=type `
135
138
<!-- YAML
136
139
added: REPLACEME
@@ -144,9 +147,6 @@ the file extension and the `"type"` field in the nearest parent `package.json`.
144
147
145
148
Works for executing a file as well as ` --eval ` , ` --print ` , ` STDIN ` .
146
149
147
- Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
148
- ` ./configure --openssl-fips ` .)
149
-
150
150
### ` --es-module-specifier-resolution=mode `
151
151
<!-- YAML
152
152
added: REPLACEME
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ void EnvironmentOptions::CheckOptions(std::vector<std::string>* errors) {
113
113
" --experimental-modules to be enabled" );
114
114
}
115
115
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\" " );
117
117
}
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments