We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like npm run build (or whatever you're using to compile) may not have been ran before npm publish for 1.0.2..
For example, the dist/index.cjs still shows on line 347
entries.gpsInfo = IFDHandler(subuffer, $0b53e5b7c7fe341c$var$tags.gps, gps);
rather than
entries.gpsInfo = this._decodeIDFEntries(buffer, $0b53e5b7c7fe341c$var$tags.gps, gps);
but line 271 is the src/marjers/exif.js in the bundle is as expected:
entries.gpsInfo = this._decodeIDFEntries(buffer, tags.gps, gps, true);
Result being i need to run npm i && npm run build in the node_modules/jay-peg after npm i to ensure the issue related to this change is resolved
npm i && npm run build
npm i
The text was updated successfully, but these errors were encountered:
@diegomura It seem there was a confusion when you've uploaded the package
Sorry, something went wrong.
Bumping for visibility. The IFDHandler is not defined is still creating issues in projects working with react-pdf.
IFDHandler is not defined
No branches or pull requests
Looks like npm run build (or whatever you're using to compile) may not have been ran before npm publish for 1.0.2..
For example, the dist/index.cjs still shows on line 347
rather than
but line 271 is the src/marjers/exif.js in the bundle is as expected:
Result being i need to run
npm i && npm run build
in the node_modules/jay-peg afternpm i
to ensure the issue related to this change is resolvedThe text was updated successfully, but these errors were encountered: