1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

Fixing linting issue.

This commit is contained in:
mike12345567 2020-10-08 18:36:31 +01:00
parent b400a06027
commit 275bd64b1b

View file

@ -1,5 +1,5 @@
const fs = require("fs")
// const sharp = require("sharp")
const sharp = require("sharp")
const fsPromises = fs.promises
const FORMATS = {
@ -7,14 +7,14 @@ const FORMATS = {
}
async function processImage(file) {
// const imgMeta = await sharp(file.path)
// .resize(300)
// .toFile(file.outputPath)
//
// return {
// ...file,
// ...imgMeta,
// }
const imgMeta = await sharp(file.path)
.resize(300)
.toFile(file.outputPath)
return {
...file,
...imgMeta,
}
}
async function process(file) {