@@ -145,59 +145,59 @@ type Warning =
145
145
| string ;
146
146
type WarningObject = {
147
147
/**
148
- * - Warning message
148
+ * Warning message
149
149
*/
150
150
message : string ;
151
151
/**
152
- * - Plugin name
152
+ * Plugin name
153
153
*/
154
154
plugin ?: string | undefined ;
155
155
/**
156
- * - Warning text
156
+ * Warning text
157
157
*/
158
158
text ?: string | undefined ;
159
159
/**
160
- * - Line number
160
+ * Line number
161
161
*/
162
162
line ?: number | undefined ;
163
163
/**
164
- * - Column number
164
+ * Column number
165
165
*/
166
166
column ?: number | undefined ;
167
167
} ;
168
168
type ErrorObject = {
169
169
/**
170
- * - Error message
170
+ * Error message
171
171
*/
172
172
message : string ;
173
173
/**
174
- * - Line number
174
+ * Line number
175
175
*/
176
176
line ?: number | undefined ;
177
177
/**
178
- * - Column number
178
+ * Column number
179
179
*/
180
180
column ?: number | undefined ;
181
181
/**
182
- * - Error stack trace
182
+ * Error stack trace
183
183
*/
184
184
stack ?: string | undefined ;
185
185
} ;
186
186
type MinimizedResult = {
187
187
/**
188
- * - Minimized code
188
+ * Minimized code
189
189
*/
190
190
code : string ;
191
191
/**
192
- * - Source map
192
+ * Source map
193
193
*/
194
194
map ?: RawSourceMap | undefined ;
195
195
/**
196
- * - Errors
196
+ * Errors
197
197
*/
198
198
errors ?: Array < Error | ErrorObject | string > | undefined ;
199
199
/**
200
- * - Warnings
200
+ * Warnings
201
201
*/
202
202
warnings ?: Array < Warning | WarningObject | string > | undefined ;
203
203
} ;
@@ -218,7 +218,7 @@ type BasicMinimizerImplementation<T> = (
218
218
) => Promise < MinimizedResult > | MinimizedResult ;
219
219
type MinimizeFunctionHelpers = {
220
220
/**
221
- * - Check if worker threads are supported
221
+ * Check if worker threads are supported
222
222
*/
223
223
supportsWorkerThreads ?: ( ( ) => boolean | undefined ) | undefined ;
224
224
} ;
@@ -230,19 +230,19 @@ type MinimizerImplementation<T> = T extends any[]
230
230
: BasicMinimizerImplementation < T > & MinimizeFunctionHelpers ;
231
231
type InternalOptions < T > = {
232
232
/**
233
- * - Name
233
+ * Name
234
234
*/
235
235
name : string ;
236
236
/**
237
- * - Input
237
+ * Input
238
238
*/
239
239
input : string ;
240
240
/**
241
- * - Input source map
241
+ * Input source map
242
242
*/
243
243
inputSourceMap : RawSourceMap | undefined ;
244
244
/**
245
- * - Minimizer
245
+ * Minimizer
246
246
*/
247
247
minimizer : {
248
248
implementation : MinimizerImplementation < T > ;
@@ -276,23 +276,23 @@ type WarningsFilter = (
276
276
) => boolean ;
277
277
type BasePluginOptions = {
278
278
/**
279
- * - Test rule
279
+ * Test rule
280
280
*/
281
281
test ?: Rule | undefined ;
282
282
/**
283
- * - Include rule
283
+ * Include rule
284
284
*/
285
285
include ?: Rule | undefined ;
286
286
/**
287
- * - Exclude rule
287
+ * Exclude rule
288
288
*/
289
289
exclude ?: Rule | undefined ;
290
290
/**
291
- * - Warnings filter
291
+ * Warnings filter
292
292
*/
293
293
warningsFilter ?: WarningsFilter | undefined ;
294
294
/**
295
- * - Parallel option
295
+ * Parallel option
296
296
*/
297
297
parallel ?: Parallel | undefined ;
298
298
} ;
0 commit comments