Nexus操作-下载前端yarn-resoulution依赖
约 535 字大约 2 分钟
Nexus操作-下载前端yarn-resoulution依赖
- 前端依赖管理工具如果是通过yarn来管理,执行yarn install会生成一个文件,文件名称为:yarn.lock文件,
- yarn.loc文件当中如果有
resoulution
字段,可以使用这个脚本来下载依赖 - 创建脚本,脚本内容为:
#!/bin/bash
repolist=$(cat yarn-resoulution.lock | grep resolution | awk '{print $2}' | sed 's/@npm.*//' | sed 's/@workspace.*//' | sed 's/@patch.*//' | sed 's/@https.*//' | cut -c 2- | sort | uniq )
echo ${repolist} > yarn.txt
for package in $repolist; do
array=$(echo "$package" )
echo ${array[@]} >> y1.txt
a2=${array##*//}
arr=($(echo "$a2" | tr '/' ' '))
echo ${arr[@]} >> y2.txt
for var in "${arr[@]}"; do
if [ ${#arr[@]} -eq 2 ]; then
echo 222
PACKAGE_NAME="${arr[0]}/${arr[1]}"
PACKAGE="${arr[1]}"
echo $PACKAGE_NAME
echo $PACKAGE
# File containing version information (each line contains a version)
VERSION_FILE="yarn-version.txt"
# Specify the registry URL
REGISTRY_URL="https://registry.npmmirror.com"
curl -s "${REGISTRY_URL}/${PACKAGE_NAME}/" | jq -r '.versions | keys_unsorted | .[]' > "$VERSION_FILE"
# Create a directory to store the downloaded files
if [ ! -d $PACKAGE_NAME ]; then
mkdir -p $PACKAGE_NAME
echo $PACKAGE_NAME >> yarn-latest.txt
# Iterate through each version and download the corresponding .tgz file
while IFS= read -r VERSION; do
FILE_NAME="${PACKAGE}-${VERSION}.tgz"
DOWNLOAD_URL="${REGISTRY_URL}/${PACKAGE_NAME}/-/${FILE_NAME}"
if [ ! -f ${PACKAGE_NAME}/${FILE_NAME} ]; then
if wget --spider --quiet "$DOWNLOAD_URL"; then
echo "Downloading ${DOWNLOAD_URL}..."
wget $DOWNLOAD_URL -O ${PACKAGE_NAME}/${FILE_NAME}
cp ${PACKAGE_NAME}/${FILE_NAME} /Users/houfei/anpm/
fi
fi
done < "$VERSION_FILE"
else
# Iterate through each version and download the corresponding .tgz file
while IFS= read -r VERSION; do
FILE_NAME="${PACKAGE}-${VERSION}.tgz"
DOWNLOAD_URL="${REGISTRY_URL}/${PACKAGE_NAME}/-/${FILE_NAME}"
echo $VERSION
if [ ! -f ${PACKAGE_NAME}/${FILE_NAME} ]; then
if wget --spider --quiet "$DOWNLOAD_URL"; then
echo "Downloading ${DOWNLOAD_URL}..."
echo "${DOWNLOAD_URL}" >> latest-version.txt
wget $DOWNLOAD_URL -O ${PACKAGE_NAME}/${FILE_NAME}
cp ${PACKAGE_NAME}/${FILE_NAME} /Users/houfei/anpm/
fi
fi
done < "$VERSION_FILE"
fi
elif [ ${#arr[@]} -eq 1 ]; then
echo 111
PACKAGE_NAME="${arr[0]}"
PACKAGE="${arr[0]}"
echo $PACKAGE_NAME
echo $PACKAGE
# File containing version information (each line contains a version)
VERSION_FILE="yarn-version.txt"
# Specify the registry URL
REGISTRY_URL="https://registry.npmmirror.com"
curl -s "${REGISTRY_URL}/${PACKAGE_NAME}/" | jq -r '.versions | keys_unsorted | .[]' > "$VERSION_FILE"
if [ ! -d $PACKAGE_NAME ]; then
# Create a directory to store the downloaded files
mkdir -p $PACKAGE_NAME
echo $PACKAGE_NAME >> yarn-latest.txt
# Iterate through each version and download the corresponding .tgz file
while IFS= read -r VERSION; do
FILE_NAME="${PACKAGE}-${VERSION}.tgz"
DOWNLOAD_URL="${REGISTRY_URL}/${PACKAGE_NAME}/-/${FILE_NAME}"
if [ ! -f ${PACKAGE_NAME}/${FILE_NAME} ]; then
if wget --spider --quiet "$DOWNLOAD_URL"; then
echo "Downloading ${DOWNLOAD_URL}..."
wget $DOWNLOAD_URL -O ${PACKAGE_NAME}/${FILE_NAME}
cp ${PACKAGE_NAME}/${FILE_NAME} /Users/houfei/anpm/
fi
fi
done < "$VERSION_FILE"
else
# Iterate through each version and download the corresponding .tgz file
while IFS= read -r VERSION; do
FILE_NAME="${PACKAGE}-${VERSION}.tgz"
DOWNLOAD_URL="${REGISTRY_URL}/${PACKAGE_NAME}/-/${FILE_NAME}"
echo $VERSION
if [ ! -f ${PACKAGE_NAME}/${FILE_NAME} ]; then
if wget --spider --quiet "$DOWNLOAD_URL"; then
echo "Downloading ${DOWNLOAD_URL}..."
echo "${DOWNLOAD_URL}" >> latest-version.txt
wget $DOWNLOAD_URL -O ${PACKAGE_NAME}/${FILE_NAME}
cp ${PACKAGE_NAME}/${FILE_NAME} /Users/houfei/anpm/
fi
fi
done < "$VERSION_FILE"
fi
fi
done
done
Powered by Waline v3.1.3