-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homebrew doesn't like installing JS files in "lib" #9
Comments
What special thing does homebrew do with that lib dir that makes it so unhappy with js files? And if that behavior is contrary to our use of those script files, is there a way to disable it within the formula? (like a |
Doesn't look like there's a way to disable that check: http://www.rubydoc.info/github/Homebrew/brew/FormulaCellarChecks#check_non_libraries-instance_method |
Yeah, it looks like Homebrew automatically symlinks anything in |
Ah right. That definitely should be something that could be disabled. I'm
|
An alternative might be to publish this package to npm rather than Homebrew. Makes sense, seeing as it depends on node anyway. |
nodenv/homebrew-nodenv#21 should take care of this without changing anything in this repo. |
Yeah, I thought about that. But it'd be a bit trickier getting it
|
Could just do as Homebrew does with |
resolved by nodenv/homebrew-nodenv#21 |
We could move those files to
libexec
, but that's usually reserved for executables that aren't intended to be run directly by the user. Maybesrc
orjs
?The text was updated successfully, but these errors were encountered: