diff options
author | Eric Bailey <git@esb.lol> | 2024-01-16 16:35:08 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 14:35:08 -0800 |
commit | 64f7800bed3ac72f1742f96e94e72334fcb65283 (patch) | |
tree | f04947dd36c64f76f4565242906c9af20ffb1dfc /patches/@lingui+core+4.5.0.patch | |
parent | f1e58626fbfc9cd474677c7fe48daf755a3470cf (diff) | |
download | voidsky-64f7800bed3ac72f1742f96e94e72334fcb65283.tar.zst |
Patch `@lingui/core` to fix `unraw` import resolution error (#2548)
Diffstat (limited to 'patches/@lingui+core+4.5.0.patch')
-rw-r--r-- | patches/@lingui+core+4.5.0.patch | 10 |
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"; |