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 {
|
try {
|
||||||
(async () => {
|
(async () => {
|
||||||
const file = await imagemin([newFile], '/tmp', {
|
// const file = await imagemin([newFile], '/tmp', {
|
||||||
plugins: [
|
// plugins: [
|
||||||
imageminJpegtran(),
|
// imageminJpegtran(),
|
||||||
imageminPngquant({
|
// imageminPngquant({
|
||||||
quality: '65-80'
|
// quality: '65-80'
|
||||||
})
|
// })
|
||||||
]
|
// ]
|
||||||
})
|
// })
|
||||||
|
|
||||||
console.log('Après imagemin')
|
// console.log('Après imagemin')
|
||||||
|
|
||||||
this._send({
|
this._send({
|
||||||
path: file[0].path,
|
path: newFile,
|
||||||
|
// path: file[0].path,
|
||||||
filename: params.filename
|
filename: params.filename
|
||||||
}, (err, res) => {
|
}, (err, res) => {
|
||||||
callback(err, res)
|
callback(err, res)
|
||||||
fs.unlink(file[0].path, () => { })
|
// fs.unlink(file[0].path, () => { })
|
||||||
})
|
})
|
||||||
})()
|
})()
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in a new issue