mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
26 lines
606 B
Bash
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
|