mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-21 20:59:38 -04:00
* Add schemas package * TMP * TMP * Fix text pdfRender bug * move render props type to schema * update type * TMP * remove webpack * Fix build error * Add comment * TMP * bugfix * TMP * Bug fix for dynamicFontSize * Minor fix * TMP * Minor fix * Fix build error * Add generics * add comment * Minor fix * Move Plugin type to common from schemas * TMP Move some pdfme/common functions to pdfme/schemas * Fix test * Fix build bug * Fix build error * Refactoring * remove any type * Fix fail test * Fix build error * Minor fix * Refactoring * Fix format
15 lines
195 B
Bash
Executable File
15 lines
195 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
|
|
npm link @pdfme/schemas
|
|
cd ..
|
|
done
|