You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
TARGET="jpc-like-websites.js"
|
|
SRC="src"
|
|
|
|
# The list are mirroring the correct import/usage order
|
|
# First "SUB_LIST" are the modifier subcategories
|
|
# Second "MODIFIER_LIST" comes the modifier and orga-/orientations
|
|
# Third "HIGHER_LIST" come several of the commons, the context as well as component
|
|
# and thoose that use component.
|
|
|
|
SUB_LIST="siding.js shapes.js border.js dimensions.js"
|
|
MODIFIERS_LIST="alignment.js arrangement.js modifier.js"
|
|
HIGHER_LIST="commonEvents.js context.js component.js baseComponents.js builder.js"
|
|
|
|
echo "" > $TARGET
|
|
echo "/* ## color.js ## */" >> $TARGET
|
|
cat $SRC/color.js >> $TARGET
|
|
|
|
echo "/* # SUB_LIST # */" >> $TARGET
|
|
for i in $SUB_LIST; do
|
|
echo "/* ## $i ## */" >> $TARGET
|
|
cat $SRC/sizeSide/$i >> $TARGET
|
|
done
|
|
|
|
echo "/* # MODIFIERS_LIST # */" >> $TARGET
|
|
for i in $MODIFIERS_LIST; do
|
|
echo "/* ## $i ## */" >> $TARGET
|
|
cat $SRC/$i >> $TARGET
|
|
done
|
|
|
|
echo "/* # HIGHER_LIST # */" >> $TARGET
|
|
for i in $HIGHER_LIST; do
|
|
echo "/* ## $i ## */" >> $TARGET
|
|
cat $SRC/$i >> $TARGET
|
|
done
|
|
|