From 0d543a28e2facf05849fa860bb4a8ae7c9c916c8 Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Tue, 27 Dec 2022 08:19:29 +0300 Subject: [PATCH] Fix small typo in 999-big-list-of-options.md (#4768) Co-authored-by: Lukas Taegert-Atkinson --- docs/999-big-list-of-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/999-big-list-of-options.md b/docs/999-big-list-of-options.md index b87062f362b..5a8f17ac7d4 100755 --- a/docs/999-big-list-of-options.md +++ b/docs/999-big-list-of-options.md @@ -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';