Browse Source

Fixing linting issue.

pull/678/head
mike12345567 6 years ago
parent
commit
275bd64b1b
  1. 18
      packages/server/src/utilities/fileProcessor.js

18
packages/server/src/utilities/fileProcessor.js

@ -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) {

Loading…
Cancel
Save