diff --git a/doc/api/packages.md b/doc/api/packages.md index 17fdf4ede6d922..737e777550c148 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -367,11 +367,12 @@ Node.js supports the following conditions out of the box: `import()`, or via any top-level import or resolve operation by the ECMAScript module loader. Applies regardless of the module format of the target file. _Always mutually exclusive with `"require"`._ -* `"require"` - matched when the package is loaded via `require()`. - The referenced file should be loadable with `require()` although the condition - will be matched regardless of the module format of the target file. Expected formats - include CommonJS, JSON, and native addons but not ES modules as `require()` - doesn't support them. _Always mutually exclusive with `"import"`._ +* `"require"` - matched when the package is loaded via `require()`. The + referenced file should be loadable with `require()` although the condition + will be matched regardless of the module format of the target file. Expected + formats include CommonJS, JSON, and native addons but not ES modules as + `require()` doesn't support them. _Always mutually exclusive with + `"import"`._ * `"node"` - matched for any Node.js environment. Can be a CommonJS or ES module file. _This condition should always come after `"import"` or `"require"`._