Is there any short command to move a module from devDependencies to dependencies in package.json?

I find myself always doing this:

npm uninstall <module_name> --save-dev 
npm install <module_name> --save

Is there a shorter approach to this?

7 Answers
7

Leave a Reply

Your email address will not be published. Required fields are marked *