Skip to content
On this page

yarn reload

shell
#! /bin/sh

echo "开始删除node_modules"
rm -rf node_modules
echo "安装依赖"
yarn
echo "安装完成"

Released under the MIT License.