Skip to content

Commit 6ad0e55

Browse files
fix(types): fix type for chunkSortMode (#1798)
1 parent df795af commit 6ad0e55

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

typings.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ declare namespace HtmlWebpackPlugin {
5252
*/
5353
chunksSortMode?:
5454
| "auto"
55+
// `none` is deprecated and an alias for `auto` now.
56+
| "none"
5557
| "manual"
5658
| ((entryNameA: string, entryNameB: string) => number);
5759
/**

0 commit comments

Comments
 (0)