ant-design/scripts/ci-mock-project-build.sh
2023-11-17 10:26:03 +08:00

26 lines
606 B
Bash

# Create a umi project
# clean up
rm -rf ~tmpProj/
# clean up `packageManager` since this will block yarn install
echo "Cleaning up package.json..."
sed -i '/packageManager/d' 'package.json' # linux no need for `''`
sed -i '' '/packageManager/d' 'package.json' # mac need `''`
# clone project
echo "Cloning project..."
git clone https://github.com/ant-design/ant-design-examples.git ~tmpProj --depth=1
# change directory
echo "Changing directory..."
cd ~tmpProj/examples/with-nextjs-inline-style
# install dependencies
echo "Installing dependencies..."
yarn
# build
echo "Building..."
yarn run build