Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
754 B

#!/usr/bin/env bash
set -e
# Remove old editor
rm -rf editor
if [ ! -d ".temp/web-draw" ]; then
git clone ssh://git@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
fi
cd .temp/web-draw
pnpm install
npm run build -- --filter=@roadmapsh/editor
cd ../../
# Copy new editor
cp -rf .temp/web-draw/packages/editor editor
editor_changed_files=$(git ls-files -m editor)
echo $editor_changed_files
# for each of the changed files, assume they are unchanged
for file in $editor_changed_files; do
echo "Assuming $file is unchanged"
git update-index --assume-unchanged $file
done
# Remove temp directory
rm -rf .temp
# Reinstall so that the editor which was setup gets used
rm -rf node_modules
pnpm install
git checkout -- pnpm-lock.yaml