Files
pdfme/link-workspaces.sh
Kyohei Fukuda c2fd0a8fae Add schemas package (#278)
* 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
2023-10-18 17:29:49 +09:00

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