You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
157 B
Bash
13 lines
157 B
Bash
7 months ago
|
#!/bin/bash
|
||
|
if [ -d "node_modules" ]; then
|
||
|
rm -r node_modules
|
||
|
fi
|
||
|
|
||
|
if [ -d ".npm" ]; then
|
||
|
rm -r .npm
|
||
|
fi
|
||
|
|
||
|
if [ -d ".npmrc" ]; then
|
||
|
rm -r .npmrc
|
||
|
fi
|