amis2/publish-to-internal.sh

55 lines
1.5 KiB
Bash
Raw Normal View History

2022-06-06 17:28:39 +08:00
#!/bin/bash
set -e
2022-06-07 16:30:38 +08:00
npm run build --workspaces
2022-06-06 17:28:39 +08:00
rm -rf npm
mkdir npm
2022-07-22 15:20:19 +08:00
# 如果有问题可以注释掉这两行,不知道为啥会导致 cp -rf 挂掉
# rm -rf packages/amis/node_modules/.bin
# rm -rf packages/amis-ui/node_modules/.bin
2022-06-06 17:28:39 +08:00
cp -rf packages npm
cp package.json npm
# 记录last commit便于区分内网版本包之间的差异
REVISION=revision.json
npm run revision -- $REVISION
if [ -f "$REVISION" ]; then
for dir in $(find ./npm/packages -mindepth 1 -maxdepth 1 -type d); do
[ -d "$dir" ] && cp $REVISION "$dir/$REVISION";
done;
else
echo "$REVISION not exists."
fi
2022-06-06 17:28:39 +08:00
cd npm
# package.json 里面把包名称换了
2022-06-07 11:40:09 +08:00
for f in $(find ./packages -name "package.json"); do
2022-06-06 17:28:39 +08:00
sed -i '' -e 's/\"name\": \"amis/\"name\": \"@fex\/amis/g' $f
2022-06-07 11:40:09 +08:00
sed -i '' -e 's/\"amis-/\"@fex\/amis-/g' $f
2022-06-06 17:28:39 +08:00
done
# 把代码里面import的部分换成内部包名称
for f in $(find ./packages/*/lib -type f -name "*.[tj]s"); do
sed -i '' -e "s/from \'amis/from \'@fex\/amis/g" $f
sed -i '' -e "s/import(\'amis/import(\'@fex\/amis/g" $f
sed -i '' -e "s/require(\'amis/require(\'@fex\/amis/g" $f
sed -i '' -e "s/require(\[\'amis/require(\[\'@fex\/amis/g" $f
2022-06-06 17:28:39 +08:00
done
for f in $(find ./packages/*/esm -type f -name "*.[tj]s"); do
sed -i '' -e "s/from \'amis/from \'@fex\/amis/g" $f
sed -i '' -e "s/import(\'amis/import(\'@fex\/amis/g" $f
sed -i '' -e "s/require(\'amis/require(\'@fex\/amis/g" $f
sed -i '' -e "s/require(\[\'amis/require(\[\'@fex\/amis/g" $f
2022-06-07 16:28:28 +08:00
done
2022-06-07 16:30:38 +08:00
npm publish --workspaces --registry=http://registry.npm.baidu-int.com --ignore-scripts
2022-06-06 17:28:39 +08:00
cd ..
2022-06-07 16:30:38 +08:00
rm -rf npm