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.
 
 
 
 
 

19 lines
317 B

#!/usr/bin/env bash
set -e
rm -rf .temp
rm -rf editor
git clone ssh://git@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
cd .temp/web-draw
pnpm install
npm run build -- --filter=@roadmapsh/dummy-editor
# Copy new editor
cp -rf packages/dummy-editor ../../editor
# Remove temp directory
rm -rf .temp