Release v3.10.2

This commit is contained in:
Julien Fastré 2025-03-17 22:30:17 +01:00
parent b0e826d05a
commit 8b7b5ceed7
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
3 changed files with 8 additions and 1 deletions

3
.changes/v3.10.2.md Normal file
View File

@ -0,0 +1,3 @@
## v3.10.2 - 2025-03-17
### Fixed
* Replace a ts-expect-error with a ts-ignore

View File

@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie). and is generated by [Changie](https://github.com/miniscruff/changie).
## v3.10.2 - 2025-03-17
### Fixed
* Replace a ts-expect-error with a ts-ignore
## v3.10.1 - 2025-03-17 ## v3.10.1 - 2025-03-17
### DX ### DX
* Remove yarn dependency to symfony/ux-translator, to ease the build process * Remove yarn dependency to symfony/ux-translator, to ease the build process

View File

@ -336,7 +336,7 @@ import {
PDFPageProxy, PDFPageProxy,
} from "pdfjs-dist/types/src/display/api"; } from "pdfjs-dist/types/src/display/api";
// @ts-expect-error incredible but the console.log is needed // @ts-ignore incredible but the console.log is needed
import * as PdfWorker from "pdfjs-dist/build/pdf.worker.mjs"; import * as PdfWorker from "pdfjs-dist/build/pdf.worker.mjs";
console.log(PdfWorker); console.log(PdfWorker);