aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/danger/clean/modules.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/danger/clean/modules.sh')
-rwxr-xr-xscripts/danger/clean/modules.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/danger/clean/modules.sh b/scripts/danger/clean/modules.sh
new file mode 100755
index 000000000..1aa6c732b
--- /dev/null
+++ b/scripts/danger/clean/modules.sh
@@ -0,0 +1,7 @@
1#!/usr/bin/env sh
2
3read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
4
5if [[ "$REPLY" =~ ^[Yy]$ ]]; then
6 rm -rf node_modules client/node_modules client/typings
7fi