Closed KDot227 closed 7 months ago
This package was not intended for use with Bun, and I have no experience with it. If you have any ideas on why it does not work, feel free to create a PR.
Take a look at this doc (it was the first result on google search), it says: Bun does not execute arbitrary lifecycle scripts for installed dependencies, such as postinstall and node-gyp builds.
To tell Bun to allow lifecycle scripts for a particular package, add the package to trustedDependencies in your package.json.
Package.json
{
"name": "my-app",
"version": "1.0.0",
"trustedDependencies": ["node-hide-console-window"]
}
When trying to install with bun I get the following error