-
Notifications
You must be signed in to change notification settings - Fork 842
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
Incomplete version number in .nvmrc
#891
Comments
Personally, I would prefer the first solution, because it should fix the problem for both repository clones and the compiled distribution. |
IMO the I would also hesitate to be very prescriptive about the exact version of node needed. We'd want to target Kibana's version and would need to update at the same time, but there may be other problems introduced.
|
Kibana specifies its Node.js version in the |
Right. I'm curious what would happen (or go wrong) if Kibana uses 8.11.1 and EUI specifies 8.11.0, for example. |
Since EUI targets the browser, it seems that any mismatch problems would occur in the tooling used at install-time. I can think of three scenarios that could cause problems:
|
I think you're 3 points are correct. We don't currently have any of those limitations, and I'm not convinced Thanks for digging into the installation problem and filling this issue! |
Version:
>=v0.0.27
Description:
The
.nvmrc
file just contains8
, which is not recognized as a valid Node.js version number by some tools (e.g. asdf). Since this file is also included in the distributed bundle, it can cause problems during installation in some environments where those tools try to select the correct Node.js version number for thepostinstall
script.Possible Solutions:
8.11.2
..nvmrc
file from the distributed bundle. This could prevent some problems during installation of the distribution, but not when working with the source release.The text was updated successfully, but these errors were encountered: