How do you handle very long NPM scripts?
My NPM scripts are getting very long, for example if I'd like to kill all docker containers of my project, remove images and volumes and rebuild everything form scratch it goes like this: docker ps | grep my_project | tr -s ' ' | cut -d ' ' -f2 | xar...
Jun 23, 2016GN