Version 1.0.2 on npm is the same as 1.0.1
- Dominant language
- JavaScript
- Stars
- 9
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.