While installing Bootstrap 4 (the latest beta version) with NPM : `npm install bootstrap@4.0.0-beta, I got this message :
+-- bootstrap@4.0.0-beta
+-- font-awesome@4.7.0
+-- UNMET PEER DEPENDENCY jquery@>=3.0.0
`-- UNMET PEER DEPENDENCY popper.js@^1.11.0
npm WARN bootstrap@4.0.0-beta requires a peer of jquery@>=3.0.0 but none was installed.
npm WARN bootstrap@4.0.0-beta requires a peer of popper.js@^1.11.0 but none was installed.
npm WARN b4starter@1.0.0 No repository field.
To remove this warning : npm i --save jquery popper.js
But, why the first command didn't install Bootstrap 4, Jquery and Popper.js in one time? normally NPM should install dependencies !!
Any explaination please?
Thank you