From 17b92927334abf30340da454db61327515ad0fb0 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Fri, 10 May 2024 16:23:15 +0200 Subject: [PATCH] Add README --- patches/README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 patches/README.md diff --git a/patches/README.md b/patches/README.md new file mode 100644 index 0000000000000..8149c96950057 --- /dev/null +++ b/patches/README.md @@ -0,0 +1,31 @@ +# Dependency patches + +Sometimes there are problems with dependencies that can be solved by patching them. Gutenberg uses +[`patch-package`](https://www.npmjs.com/package/patch-package) to patch npm dependencies when +they're installed. + +Existing patches should be described and justified here. + +## Patches + +### `patches/lighthouse+10.4.0.patch` + +No notes. + +### `patches/react-autosize-textarea+7.1.0.patch` + +This package is unmaintained. It's incompatible with some recent versions of React types in ways +that are mostly harmless. + +The `onPointerEnterCapture` and `onPointerLeaveCapture` events were removed. The package is patched +to remove those events as well. + +See https://github.com/facebook/react/pull/17883. + +### `patches/react-devtools-core+4.28.5.patch` + +No notes. + +### `patches/react-native+0.73.3.patch` + +No notes.