DetachHead

Results 929 comments of 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: ![image](https://user-images.githubusercontent.com/57028336/114071707-c29d8280-98e4-11eb-8289-5c0aaa4eadd0.png) but the `publish` task does: ![image](https://user-images.githubusercontent.com/57028336/114071925-055f5a80-98e5-11eb-91bd-cdd6960d5276.png) 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?