mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-18 21:19:10 -04:00
14 lines
167 B
Bash
Executable File
14 lines
167 B
Bash
Executable File
cd packages
|
|
|
|
for dir in $(ls -d */); do
|
|
cd "$dir"
|
|
npm link
|
|
cd ..
|
|
done
|
|
|
|
for dir in generator ui; do
|
|
cd "$dir"
|
|
npm link @pdfme/common
|
|
cd ..
|
|
done
|