Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Image field tests #8820

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"target": "esnext"
}
]
}
},
"transformIgnorePatterns": []
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably isn't the best pathway for this

}
}
7 changes: 3 additions & 4 deletions packages/core/src/lib/assets/createImagesContext.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { randomBytes } from 'node:crypto'
import { fileTypeFromBuffer } from 'file-type'
import imageSize from 'image-size'

import {
Expand All @@ -15,10 +16,8 @@ function defaultTransformName (path: string) {
}

async function getImageMetadataFromBuffer (buffer: Buffer) {
const fileType = await (await import('file-type')).fileTypeFromBuffer(buffer)
if (!fileType) {
throw new Error('File type not found')
}
const fileType = await fileTypeFromBuffer(buffer)
if (!fileType) throw new Error('File type not found')

const { ext: extension } = fileType
if (extension !== 'jpg' && extension !== 'png' && extension !== 'webp' && extension !== 'gif') {
Expand Down
Loading