about summary refs log tree commit diff
path: root/patches
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-01-16 16:35:08 -0600
committerGitHub <noreply@github.com>2024-01-16 14:35:08 -0800
commit64f7800bed3ac72f1742f96e94e72334fcb65283 (patch)
treef04947dd36c64f76f4565242906c9af20ffb1dfc /patches
parentf1e58626fbfc9cd474677c7fe48daf755a3470cf (diff)
downloadvoidsky-64f7800bed3ac72f1742f96e94e72334fcb65283.tar.zst
Patch `@lingui/core` to fix `unraw` import resolution error (#2548)
Diffstat (limited to 'patches')
-rw-r--r--patches/@lingui+core+4.5.0.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/patches/@lingui+core+4.5.0.patch b/patches/@lingui+core+4.5.0.patch
new file mode 100644
index 000000000..8ace93a74
--- /dev/null
+++ b/patches/@lingui+core+4.5.0.patch
@@ -0,0 +1,10 @@
+diff --git a/node_modules/@lingui/core/dist/index.mjs b/node_modules/@lingui/core/dist/index.mjs
+index 9759736..881f67b 100644
+--- a/node_modules/@lingui/core/dist/index.mjs
++++ b/node_modules/@lingui/core/dist/index.mjs
+@@ -1,4 +1,4 @@
+-import unraw from 'unraw';
++import { unraw } from 'unraw';
+ import { compileMessage } from '@lingui/message-utils/compileMessage';
+ 
+ const isString = (s) => typeof s === "string";