Skip to content

Instantly share code, notes, and snippets.

@bunsyy
Last active February 10, 2025 02:29
Show Gist options
  • Save bunsyy/733af02a7c59625811c2f6ea0392acff to your computer and use it in GitHub Desktop.
Save bunsyy/733af02a7c59625811c2f6ea0392acff to your computer and use it in GitHub Desktop.
How I fix a node_module dependency by myself
npm install -D patch-package
# yarn add -D patch-package
{
...
"scripts": {
...
"postinstall": "patch-package"
},
...
}
// inside index.ts file of the cz-emoji package
...
// old
const type = config.types.find(type => type.code === emoji.emoji).name
^ ^
// new
const type = config.types.find(type => type.name === emoji.name).name
^ ^
...
npx patch-package cz-emoji
# yarn patch-package cz-emoji
npm install
# yarn install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment