Skip to content

Commit dc46fc5

Browse files
author
Cédric Belin
committed
Code formatting
1 parent e7d8432 commit dc46fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gulp_plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class GulpPlugin extends Transform {
4444
* @param done The function to invoke when the supplied chunk has been processed.
4545
* @returns Resolves when the specified chunk has been transformed.
4646
*/
47-
override async _transform(file: File, encoding: NodeJS.BufferEncoding, done: TransformCallback): Promise<void> { // eslint-disable-line @typescript-eslint/no-misused-promises
47+
override async _transform(file: File, encoding: BufferEncoding, done: TransformCallback): Promise<void> { // eslint-disable-line @typescript-eslint/no-misused-promises
4848
try {
4949
if (!this.#silent) log(`Minifying: ${file.relative}`);
5050
file.contents = Buffer.from(await this.#transformer.transform(file.path), encoding);

0 commit comments

Comments
 (0)