🔧 Centrally confifured package and rollup files
This commit is contained in:
parent
74e8ef991c
commit
a3ff3a7462
147 changed files with 3196 additions and 273680 deletions
18
scripts/taskrunner.sh
Executable file
18
scripts/taskrunner.sh
Executable 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
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue