DetachHead
DetachHead
it does. i've [released 1.2.0](https://github.com/DetachHead/playwright-xpath/releases/tag/1.2.0) with the changes you suggested. thanks for all your help :)
nevermind, turns out it's in `GifFrame` and was losing the `GifFrameOptions` here in my code ```ts frames = image.frames.map(frame => new GifFrame( (GifUtil.copyAsJimp(Jimp, frame) as Jimp).scaleToFit(maxSize, maxSize).bitmap, frame ) )...
```json { "apps": [ { "beta": false, "bundleIdentifier": "com.opa334.TrollInstaller", "developerName": "Lars Fröder", "downloadURL": "https://github.com/opa334/TrollStore/releases/download/1.0/TrollInstaller.ipa", "iconURL": "https://github.com/opa334/TrollStore/raw/main/Installer/TrollInstaller/TrollInstaller/Assets.xcassets/AppIcon.appiconset/1024.png", "localizedDescription": "TrollStore in a permasigned jailed app that can permanently install any IPA you...
@fox8091 not sure if linking to that in the altstore repo is a good idea, since there's metadata like the app version and changelog which would become incorrect whenever there's...
Would this just be a command that reads the `baseline.json` and outputs all its errors?
the issue seems to be that for some reason the `publishToLocalMaven` task doesn't output the multiplatform files:  but the `publish` task does:  my solution was to just make...
care to share your config? been tearing my hair out at this for the last few days. [here's mine](https://github.com/DetachHead/url-builder/blob/jitpack/build.gradle.kts), it's full of dirty hacks because none of it worked out...
in my case it was falling back to jdk 8 instead of 10 when i tried setting it to `openjdk14`
perhaps simply making `playwright.sync_api.TimeoutError` extend both `Error` and the builtin `TimeoutError` would solve the problem? ```py _BuiltinTimeoutError = TimeoutError class TimeoutError(Error, _BuiltinTimeoutError): ... ``` that way there's no backward incompatible...
i'm unable to reproduce this issue on a project using typescript 3.9.9. would you be able to share some details about your CI config that's failing?