I'm issuing the following npm command to install some files needed by Bootstrap:
npm install browser-sync gulp gulp-sass --save-dev
After this runs, there are 492 folders that contain over 55 MB files installed into the node_modules folder before I've even installed Bootstrap.
I'm trying to install two versions of Bootstrap. I already have version 4 installed, but would also like to install Bootstrap 5 alpha 2, but it seems only one version can live in node_modules at a time. So I have to add a new folder with another node_modules folder full of all these files just to run another version of Bootstrap.
Is there any way I can install two versions of Bootstrap into one node_modules folder to avoid all these duplicate files? Thanks.