2016-04-30 04:17:50 -05:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
|
|
|
|
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
2016-05-13 07:42:14 -05:00
|
|
|
rm -rf node_modules client/node_modules client/typings
|
2016-04-30 04:17:50 -05:00
|
|
|
fi
|