Tom Ardern
Tom Ardern
I recommend that the Docs are changed to state that this package only currently works for Node 6.10
@adamgruber The use case for us would be to: - Links to the server logs for the tests - Links to the build which the tests are for. I don't...
Maybe something in the toml file? eg ``` [functions] directory = "src/" node_bundler = "esbuild" esbuild_config_file = "./config_file" # Specifies `esbuild` config ```
Hi all, I'm getting the same issue here, we can't intercept network requests when they are being called from a service worker. However, using `page.setRequestInterception(true)` does block the request, we...
Changing the GitHub action to use `on: pull_request` and the reporter to `-reporter=github-pr-check` no longer shows the "unchanged files with check annotations"
Similar to the above, this helped me on an M1 Mac: ``` docker run -d -p 80:8080 --platform linux/amd64 swaggerapi/swagger-editor ```
Removing `.cache` and `build` directories worked - looking much better :) 
@bcoe For my case, yes, I'm not an expert on sourcemaps, so I'm not totally sure.
I've been delving a little deeper into this today. I believe the cause of the performance related issues is down to the `update` [1] method being called once an image...
Try the below to load in the HTML: ``` const $ = load(input, { xml: { emptyAttrs: false, decodeEntities: false, selfClosingTags: true, xmlMode: false, }, }, true, ) const output...