element-plus/scripts/build.sh

40 lines
1.1 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:esm-bundle
tar --exclude=index.esm.js -zcvf ./es.gz ./lib
mkdir -p es
tar -zxvf ./es.gz --strip-component 2 -C ./es
yarn build:lib
yarn build:lib-full
# -P2 stands for 2 maximum parallel, with
2020-12-27 14:16:18 +08:00
# node .build/build.js command
# find './packages' -type d -maxdepth 1 ! -name '*util*' ! -name '__mocks__' ! -name 'locale' ! -name 'theme*' -print0 | xargs -I {} -P2 -0 node ./build/build.comps.js {}
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' -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
2020-12-27 14:16:18 +08:00
# Post build clean up
rm ./es.gz