reomve unused packages, unused file

This commit is contained in:
Henry Zhu
2017-10-07 08:51:38 -04:00
parent 6298bcde03
commit 35646f15a4
2 changed files with 0 additions and 14 deletions

View File

@@ -1,12 +0,0 @@
#!/bin/bash
set -e
read -p "Username: " username
for f in packages/*; do
package=`basename $f`
if [ -d "$f" ]; then
npm owner add $username $package
fi
done