Forum Discussion
Warnings when doing gulp bundle
- Sep 04, 2019
Hi Christian,
Is this a solution that you're opening from source control, or something you've completely written in your environment?
The first thing I'd do is delete and rebuilt the entire node_modules folder
rm rf node_modules npm iIf you're not working on this together with a group of people who all need to be on the same exact version of the project (for example if you are working alone in your environment, but you cloned the project from github) I'd delete the package-lock.json file as well before npm i
Hi Christian,
Is this a solution that you're opening from source control, or something you've completely written in your environment?
The first thing I'd do is delete and rebuilt the entire node_modules folder
rm rf node_modules
npm i
If you're not working on this together with a group of people who all need to be on the same exact version of the project (for example if you are working alone in your environment, but you cloned the project from github) I'd delete the package-lock.json file as well before npm i