2016-05-19 21:37:43 +03:00
|
|
|
#!/bin/bash
|
2016-04-30 12:17:50 +03:00
|
|
|
|
|
|
|
read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
|
|
|
|
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
2016-10-10 22:34:10 +03:00
|
|
|
rm -rf node_modules client/node_modules
|
2016-04-30 12:17:50 +03:00
|
|
|
fi
|