Skip to content

Commit

Permalink
Fix small typo in 999-big-list-of-options.md (#4768)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
  • Loading branch information
ericmutta and lukastaegert committed Dec 27, 2022
1 parent 02c84c2 commit 0d543a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/999-big-list-of-options.md
Expand Up @@ -91,7 +91,7 @@ export default {
};
```
If you want to convert a set of file to another format while maintaining the file structure and export signatures, the recommended way—instead of using [`output.preserveModules`](guide/en/#outputpreservemodules) that may tree-shake exports as well as emit virtual files created by plugins—is to turn every file into an entry point. You can do so dynamically e.g. via the `glob` package:
If you want to convert a set of files to another format while maintaining the file structure and export signatures, the recommended way—instead of using [`output.preserveModules`](guide/en/#outputpreservemodules) that may tree-shake exports as well as emit virtual files created by plugins—is to turn every file into an entry point. You can do so dynamically e.g. via the `glob` package:
```js
import glob from 'glob';
Expand Down

0 comments on commit 0d543a2

Please sign in to comment.