1
0
Fork 0

🔧 Centrally confifured package and rollup files

This commit is contained in:
Joost De Cock 2019-04-19 17:31:44 +02:00
parent 74e8ef991c
commit a3ff3a7462
147 changed files with 3196 additions and 273680 deletions

18
scripts/taskrunner.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
# This will iterate over all directories in packages
# so you can do once-off maintenance like removing
# node_modules folders and things like that.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
CUR=`pwd`
cd $DIR
for d in ../packages/*/ ; do {
cd $d
pwd
cd ..
}
done
cd $CUR