Remove nodejs devDependencies

Is there a way to remove devDependencies in nodejs without deleting everything. I do not have npm on the target server, so I do the following:

$ npm install $ grunt build $ rm -rf node_modules $ npm install --production 

Does anyone know if there is an npm module that can clean installed modules. TIA!

+6
source share
1 answer
+25
source

Source: https://habr.com/ru/post/974554/


All Articles