You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason why Booststrap, Jquery and popper.js are in you devdependancies? I thought anything in devdependancies doesn't make it as part of the bundle.
The text was updated successfully, but these errors were encountered:
When you are making end products, it doesn't really matter where you put your dependencies, from a technical aspect.
The technical difference comes into play when you distribute your code as a package, because when someone installs your package, stuff in devDependencies don't get installed alongside.
The only difference between devDependencies and dependencies for end products is that other developers will be able to quickly understand which dependency is used in the code and which are only for development. But technically, they have no different since both of them will get installed anyways.
Is there a reason why Booststrap, Jquery and popper.js are in you devdependancies? I thought anything in devdependancies doesn't make it as part of the bundle.
The text was updated successfully, but these errors were encountered: