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!
source share