element-plus/scripts/build.sh

64 lines
1.4 KiB
Bash
Raw Normal View History

2020-12-27 14:16:18 +08:00
#! /usr/bin/bash
# echo `node ./build/build.js ./packages/button`
# find all folders under root/packages excludes
# *utils, __mocks__ directives hooks locale theme*
# which means the result will not contain folder name includes utils
2021-01-14 17:39:36 +08:00
yarn bootstrap
2020-12-27 14:16:18 +08:00
yarn clean:lib
yarn build:type
2020-12-27 14:16:18 +08:00
yarn build:lib
yarn build:lib-full
yarn build:components
2020-12-27 14:16:18 +08:00
find ./packages/utils -type f ! -name '*.test.ts' ! -name 'package.json' -print0 \
| xargs -P2 -0 -I {} node ./build/build-util.js {}
node ./build/build.entry.js
2020-12-27 14:16:18 +08:00
find ./packages/locale -type f ! -name '*.spec.ts' ! -name 'package.json' ! -name '.DS_Store' -print0 \
| xargs -P2 -0 -I {} node ./build/build-util.js {}
2020-12-27 14:16:18 +08:00
yarn build:locale-umd
yarn build:theme
yarn build:helper
echo "Copying types"
# Post build cp type definitions
touch temp
cd ./dist
find . -maxdepth 1 ! -path . -type d ! -name 'element-plus' -print0 | xargs -0 -I {} sh -c "basename {}" > ../temp
cd -
input="./temp"
mkdir -p tempDir
while IFS= read -r line
do
filepath="el-$line"
case "$line" in
directives|locale|utils|hooks)
filepath="$line"
;;
esac
mv "dist/$line" "tempDir/$filepath"
rsync -a tempDir/ es/
rsync -a tempDir/ lib/
done < "$input"
cp packages/utils/types.ts es/utils/
cp dist/element-plus/* lib
cp packages/utils/types.ts lib/utils/
cp dist/element-plus/* es
echo "Remove temp files"
# Post build cleanup
rm -rf temp
rm -rf tempDir