Update npm non-major dependencies (#34263)

* Update npm non-major dependencies

* Fix pcss comments

* Run oxfmt

* Fix lockfile

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2026-07-15 09:15:58 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Michael Telatynski
parent 19f7ea2f7d
commit 86b5a28a32
15 changed files with 276 additions and 285 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ export async function blobIsAnimated(blob: Blob): Promise<boolean | undefined> {
return false;
}
for (let i = 8; i < blob.size; ) {
for (let i = 8; i < blob.size;) {
const length = arrayBufferReadInt(arr, i);
i += 4;
const type = arrayBufferReadStr(arr, i, 4);