maxkomarychev / react-native-ultimate-config

Config that works
MIT License
260 stars 31 forks source link

Doc/Quickstart (minor): `npm bin` deprecated in Node 18.14 #133

Open esalaza opened 1 year ago

esalaza commented 1 year ago

Hi. This is just a minor documentation issue.

Step 4 in docs/quickstart.md instructs to do:

"rnuc": "$(npm bin)/rnuc"

But npm bin has been removed in Node 18.14. It could be updated to:

"rnuc": "$(npm bin)/rnuc"

If you are on Node < 18.14, or:

npx rnuc

If you are on Node >= 18.14.

Steps to Reproduce

nvm i v18.16.0
nvm use v18.16.0
npm run rnuc .env
sh: Unknown: command not found

Thank you!

luca-tomasetti commented 10 months ago

Hi. This is just a minor documentation issue.

Step 4 in docs/quickstart.md instructs to do:

"rnuc": "$(npm bin)/rnuc"

But npm bin has been removed in Node 18.14. It could be updated to:

"rnuc": "$(npm bin)/rnuc"

If you are on Node < 18.14, or:

npx rnuc

If you are on Node >= 18.14.

Steps to Reproduce

nvm i v18.16.0
nvm use v18.16.0
npm run rnuc .env
sh: Unknown: command not found

Thank you!

Thank you, this solve the issue with node v18.17.1