feat: Node.js 增加 pnpm 支持 (#1503)

This commit is contained in:
zhengkunwang
2024-05-30 17:39:17 +08:00
committed by GitHub
parent 630097a4e0
commit efe865b334
12 changed files with 87 additions and 13 deletions
+38
View File
@@ -0,0 +1,38 @@
#!/bin/bash
source /.env
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm config set registry $CONTAINER_PACKAGE_URL
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn config set registry $CONTAINER_PACKAGE_URL
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm config set registry $CONTAINER_PACKAGE_URL
fi
if [[ "$RUN_INSTALL" -eq "1" ]]; then
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm install
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn install
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm install
else
echo "未知的 PACKAGE_MANAGER: $PACKAGE_MANAGER"
exit 1
fi
fi
if [[ "$CUSTOM_SCRIPT" -eq "1" ]]; then
$EXEC_SCRIPT
else
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm run $EXEC_SCRIPT
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn run $EXEC_SCRIPT
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm run $EXEC_SCRIPT
fi
fi