Robert Knight
Robert Knight
Some new web standards proposals that are relevant: - "Partitioned Popins" https://groups.google.com/a/chromium.org/g/blink-dev/c/ApU_zUmpQ2g ([Explainer](https://github.com/explainers-by-googlers/partitioned-popins))
Hello. Apologies for the late response. I have a few follow-up questions: - Does it make a difference where in the document the annotation is created (first few pages, page...
I encountered this error with Yarn v3.6.1 using a Dockerfile that looked as follows: ``` FROM node:20.2.0-alpine as frontend-build ENV NODE_ENV production RUN mkdir -p /tmp/frontend-build COPY .babelrc rollup.config.mjs gulpfile.mjs...
See https://github.com/Belval/TextRecognitionDataGenerator/pull/323 for some notes on handling this change in a related project. The way Pillow recommends migrating `getsize` to `getbbox` in the [official docs](https://pillow.readthedocs.io/en/stable/deprecations.html) gives different output. The docs...
If on the other hand the CommonJS entry point contains: ```js function functionA() { return 'functionA'; } function functionB() { return 'functionB'; } exports.functionA = functionA; exports.functionB = functionB; ```...
The above scenarios are covered by the "Entry points" section of https://github.com/rollup/plugins/issues/481. See "Entry point which assigns to module.exports" and "Entry point which adds properties to exports".
Thank-you for the quick response. The `isChromePackagedApp` expression from the master branch of this repo still incorrectly evaluates to a truthy value in Firefox, including in 1.6.4, so the issue...
> If I get this straight, the following is happening: You've got it right. If you're able to create a PR that would be great. A question I have is...
Thank-you for the report. A limitation of the current API design is that both types used in the variant have to be different. The error is that the compiler will...
Oh, good grief. You're right. `Maybe` uses `Either` in its definition. The definition ought to be something like `Either` where "NothingType" is an internal type that is only used to...