There are no typings anymore
[oweals/peertube.git] / scripts / danger / clean / modules.sh
1 #!/bin/bash
2
3 read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
4
5 if [[ "$REPLY" =~ ^[Yy]$ ]]; then
6   rm -rf node_modules client/node_modules
7 fi