Debug
This commit is contained in:
parent
51e379f104
commit
8b8f20a6d1
1 changed files with 12 additions and 11 deletions
23
libs/aws.js
23
libs/aws.js
|
@ -52,23 +52,24 @@ class Aws {
|
|||
|
||||
try {
|
||||
(async () => {
|
||||
const file = await imagemin([newFile], '/tmp', {
|
||||
plugins: [
|
||||
imageminJpegtran(),
|
||||
imageminPngquant({
|
||||
quality: '65-80'
|
||||
})
|
||||
]
|
||||
})
|
||||
// const file = await imagemin([newFile], '/tmp', {
|
||||
// plugins: [
|
||||
// imageminJpegtran(),
|
||||
// imageminPngquant({
|
||||
// quality: '65-80'
|
||||
// })
|
||||
// ]
|
||||
// })
|
||||
|
||||
console.log('Après imagemin')
|
||||
// console.log('Après imagemin')
|
||||
|
||||
this._send({
|
||||
path: file[0].path,
|
||||
path: newFile,
|
||||
// path: file[0].path,
|
||||
filename: params.filename
|
||||
}, (err, res) => {
|
||||
callback(err, res)
|
||||
fs.unlink(file[0].path, () => { })
|
||||
// fs.unlink(file[0].path, () => { })
|
||||
})
|
||||
})()
|
||||
} catch (e) {
|
||||
|
|
Loading…
Reference in a new issue