Skip to content

Commit d194e08

Browse files
style: fix readme
1 parent c3c6838 commit d194e08

File tree

1 file changed

+11
-33
lines changed

1 file changed

+11
-33
lines changed

README.md

Lines changed: 11 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -713,9 +713,7 @@ type minimizer =
713713
errors: Error[];
714714
info: import("webpack").AssetInfo;
715715
},
716-
options?:
717-
| Record<string, any>
718-
| undefined,
716+
options?: Record<string, any> | undefined,
719717
) => Promise<{
720718
filename: string;
721719
data: Buffer;
@@ -726,9 +724,7 @@ type minimizer =
726724
setup?: (() => void) | undefined;
727725
teardown?: (() => void) | undefined;
728726
};
729-
options?:
730-
| Record<string, any>
731-
| undefined;
727+
options?: Record<string, any> | undefined;
732728
filter?: (source: Buffer, sourcePath: string) => boolean | undefined;
733729
filename?:
734730
| string
@@ -749,9 +745,7 @@ type minimizer =
749745
errors: Error[];
750746
info: import("webpack").AssetInfo;
751747
},
752-
options?:
753-
| Record<string, any>
754-
| undefined,
748+
options?: Record<string, any> | undefined,
755749
) => Promise<{
756750
filename: string;
757751
data: Buffer;
@@ -762,9 +756,7 @@ type minimizer =
762756
setup?: (() => void) | undefined;
763757
teardown?: (() => void) | undefined;
764758
};
765-
options?:
766-
| Record<string, any>
767-
| undefined;
759+
options?: Record<string, any> | undefined;
768760
filter?: (source: Buffer, sourcePath: string) => boolean | undefined;
769761
filename?:
770762
| string
@@ -1236,9 +1228,7 @@ type generator = {
12361228
errors: Error[];
12371229
info: import("webpack").AssetInfo;
12381230
},
1239-
options?:
1240-
| Record<string, any>
1241-
| undefined,
1231+
options?: Record<string, any> | undefined,
12421232
) => Promise<{
12431233
filename: string;
12441234
data: Buffer;
@@ -1249,9 +1239,7 @@ type generator = {
12491239
setup?: (() => void) | undefined;
12501240
teardown?: (() => void) | undefined;
12511241
};
1252-
options?:
1253-
| Record<string, any>
1254-
| undefined;
1242+
options?: Record<string, any> | undefined;
12551243
filter?: (source: Buffer, sourcePath: string) => boolean | undefined;
12561244
filename?:
12571245
| string
@@ -1698,9 +1686,7 @@ type implementation = (
16981686
errors: Error[];
16991687
info: import("webpack").AssetInfo;
17001688
},
1701-
options?:
1702-
| Record<string, any>
1703-
| undefined,
1689+
options?: Record<string, any> | undefined,
17041690
) => Promise<{
17051691
filename: string;
17061692
data: Buffer;
@@ -2118,9 +2104,7 @@ type minimizer =
21182104
errors: Error[];
21192105
info: import("webpack").AssetInfo;
21202106
},
2121-
options?:
2122-
| Record<string, any>
2123-
| undefined,
2107+
options?: Record<string, any> | undefined,
21242108
) => Promise<{
21252109
filename: string;
21262110
data: Buffer;
@@ -2131,9 +2115,7 @@ type minimizer =
21312115
setup?: (() => void) | undefined;
21322116
teardown?: (() => void) | undefined;
21332117
};
2134-
options?:
2135-
| Record<string, any>
2136-
| undefined;
2118+
options?: Record<string, any> | undefined;
21372119
filter?: (source: Buffer, sourcePath: string) => boolean | undefined;
21382120
filename?:
21392121
| string
@@ -2154,9 +2136,7 @@ type minimizer =
21542136
errors: Error[];
21552137
info: import("webpack").AssetInfo;
21562138
},
2157-
options?:
2158-
| Record<string, any>
2159-
| undefined,
2139+
options?: Record<string, any> | undefined,
21602140
) => Promise<{
21612141
filename: string;
21622142
data: Buffer;
@@ -2167,9 +2147,7 @@ type minimizer =
21672147
setup?: (() => void) | undefined;
21682148
teardown?: (() => void) | undefined;
21692149
};
2170-
options?:
2171-
| Record<string, any>
2172-
| undefined;
2150+
options?: Record<string, any> | undefined;
21732151
filter?: (source: Buffer, sourcePath: string) => boolean | undefined;
21742152
filename?:
21752153
| string

0 commit comments

Comments
 (0)