computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
11 lines
376 B
11 lines
376 B
#!/usr/bin/env bash |
|
|
|
set -e |
|
|
|
# Fetch the latest commit hash from the GitHub repo |
|
LATEST_COMMIT_HASH=$(git ls-remote https://github.com/roadmapsh/web-draw-v2.git refs/heads/main | awk '{print $1}') |
|
|
|
echo "Latest commit hash: $LATEST_COMMIT_HASH" |
|
|
|
# Install the package using the latest commit hash |
|
pnpm add github:roadmapsh/web-draw#"$LATEST_COMMIT_HASH"\&path:packages/editor
|
|
|