mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
feat(Edit Image Node): Allow WebP as an image format (#5420)
This commit is contained in:
parent
e059caf993
commit
94f2b2a26f
|
@ -909,6 +909,10 @@ export class EditImage implements INodeType {
|
|||
name: 'tiff',
|
||||
value: 'tiff',
|
||||
},
|
||||
{
|
||||
name: 'WebP',
|
||||
value: 'webp',
|
||||
},
|
||||
],
|
||||
default: 'jpeg',
|
||||
description: 'Set the output image format',
|
||||
|
|
|
@ -736,7 +736,7 @@
|
|||
"@types/eventsource": "^1.1.2",
|
||||
"@types/express": "^4.17.6",
|
||||
"@types/formidable": "^1.0.31",
|
||||
"@types/gm": "^1.18.2",
|
||||
"@types/gm": "^1.25.0",
|
||||
"@types/imap-simple": "^4.2.0",
|
||||
"@types/jsonwebtoken": "^9.0.1",
|
||||
"@types/lodash.set": "^4.3.6",
|
||||
|
@ -776,7 +776,7 @@
|
|||
"fflate": "^0.7.0",
|
||||
"formidable": "^1.2.1",
|
||||
"get-system-fonts": "^2.0.2",
|
||||
"gm": "^1.23.1",
|
||||
"gm": "^1.25.0",
|
||||
"iconv-lite": "^0.6.2",
|
||||
"ics": "^2.27.0",
|
||||
"imap-simple": "^4.3.0",
|
||||
|
|
|
@ -747,7 +747,7 @@ importers:
|
|||
'@types/eventsource': ^1.1.2
|
||||
'@types/express': ^4.17.6
|
||||
'@types/formidable': ^1.0.31
|
||||
'@types/gm': ^1.18.2
|
||||
'@types/gm': ^1.25.0
|
||||
'@types/imap-simple': ^4.2.0
|
||||
'@types/js-nacl': ^1.3.0
|
||||
'@types/jsonwebtoken': ^9.0.1
|
||||
|
@ -782,7 +782,7 @@ importers:
|
|||
fflate: ^0.7.0
|
||||
formidable: ^1.2.1
|
||||
get-system-fonts: ^2.0.2
|
||||
gm: ^1.23.1
|
||||
gm: ^1.25.0
|
||||
gulp: ^4.0.0
|
||||
iconv-lite: ^0.6.2
|
||||
ics: ^2.27.0
|
||||
|
@ -895,7 +895,7 @@ importers:
|
|||
'@types/eventsource': 1.1.9
|
||||
'@types/express': 4.17.14
|
||||
'@types/formidable': 1.2.5
|
||||
'@types/gm': 1.18.12
|
||||
'@types/gm': 1.25.0
|
||||
'@types/imap-simple': 4.2.5
|
||||
'@types/jsonwebtoken': 9.0.1
|
||||
'@types/lodash.set': 4.3.7
|
||||
|
@ -6062,8 +6062,8 @@ packages:
|
|||
'@types/node': 16.18.12
|
||||
dev: true
|
||||
|
||||
/@types/gm/1.18.12:
|
||||
resolution: {integrity: sha512-k3Gd15Ywy75FiFQUsrqpKD42rhMdHaETyw2zjK9u3xbrH1c7nS+npSb19yjPCqR8KxeL7vw2zJF4Kl2bAca0aQ==}
|
||||
/@types/gm/1.25.0:
|
||||
resolution: {integrity: sha512-y0nI4vp+0Vtsve+daADIHeSckm11TnWAdC4CBq2BEXTg+CfJiolnsnzsXeIEuIpBCksjN26LUZlvQKJDpthw5g==}
|
||||
dependencies:
|
||||
'@types/node': 16.18.12
|
||||
dev: true
|
||||
|
|
Loading…
Reference in a new issue