2022-04-13 13:41:14 +02:00
|
|
|
echo "Linking backend-core"
|
|
|
|
cd packages/backend-core
|
2022-12-12 23:02:32 +01:00
|
|
|
yarn unlink
|
2022-04-13 13:41:14 +02:00
|
|
|
yarn link
|
|
|
|
cd -
|
|
|
|
|
|
|
|
echo "Linking string-templates"
|
2022-12-12 23:02:32 +01:00
|
|
|
cd packages/string-templates
|
|
|
|
yarn unlink
|
2022-04-13 13:41:14 +02:00
|
|
|
yarn link
|
|
|
|
cd -
|
|
|
|
|
2022-05-28 22:38:22 +02:00
|
|
|
echo "Linking types"
|
2022-12-12 23:02:32 +01:00
|
|
|
cd packages/types
|
|
|
|
yarn unlink
|
2022-05-28 22:38:22 +02:00
|
|
|
yarn link
|
|
|
|
cd -
|
|
|
|
|
2022-06-13 11:51:29 +02:00
|
|
|
echo "Linking bbui"
|
2022-12-12 23:02:32 +01:00
|
|
|
cd packages/bbui
|
|
|
|
yarn unlink
|
2022-06-13 11:51:29 +02:00
|
|
|
yarn link
|
|
|
|
cd -
|
2022-05-28 22:38:22 +02:00
|
|
|
|
2022-09-14 11:53:14 +02:00
|
|
|
echo "Linking frontend-core"
|
|
|
|
cd packages/frontend-core
|
2022-12-12 23:02:32 +01:00
|
|
|
yarn unlink
|
2022-09-14 11:53:14 +02:00
|
|
|
yarn link
|
|
|
|
cd -
|
|
|
|
|
2023-03-09 09:50:26 +01:00
|
|
|
echo "Linking shared-core"
|
|
|
|
cd packages/shared-core
|
|
|
|
yarn unlink
|
|
|
|
yarn link
|
|
|
|
cd -
|
|
|
|
|
2023-04-20 20:04:20 +02:00
|
|
|
if [ -d "../budibase-pro" ]; then
|
|
|
|
cd ../budibase-pro
|
|
|
|
echo "Bootstrapping budibase-pro"
|
|
|
|
yarn bootstrap
|
2023-04-19 11:09:12 +02:00
|
|
|
|
2023-04-20 20:04:20 +02:00
|
|
|
cd packages/pro
|
2023-04-19 11:09:12 +02:00
|
|
|
echo "Linking pro"
|
|
|
|
yarn unlink
|
|
|
|
yarn link
|
2023-04-20 20:04:20 +02:00
|
|
|
|
|
|
|
echo "Linking backend-core to pro"
|
|
|
|
yarn link '@budibase/backend-core'
|
|
|
|
|
|
|
|
echo "Linking types to pro"
|
|
|
|
yarn link '@budibase/types'
|
|
|
|
|
|
|
|
echo "Linking string-templates to pro"
|
|
|
|
yarn link '@budibase/string-templates'
|
|
|
|
|
|
|
|
cd ../../../budibase
|
|
|
|
|
|
|
|
echo "Linking pro to worker"
|
|
|
|
cd packages/worker && yarn link '@budibase/pro'
|
|
|
|
cd -
|
|
|
|
|
|
|
|
echo "Linking pro to server"
|
|
|
|
cd packages/server && yarn link '@budibase/pro'
|
2023-04-19 11:09:12 +02:00
|
|
|
cd -
|
|
|
|
fi
|
2022-04-13 13:41:14 +02:00
|
|
|
|
|
|
|
if [ -d "../account-portal" ]; then
|
2022-08-31 16:19:57 +02:00
|
|
|
cd ../account-portal
|
|
|
|
echo "Bootstrapping account-portal"
|
|
|
|
yarn bootstrap
|
|
|
|
|
|
|
|
cd packages/server
|
2022-04-13 13:41:14 +02:00
|
|
|
echo "Linking backend-core to account-portal"
|
|
|
|
yarn link "@budibase/backend-core"
|
|
|
|
|
|
|
|
echo "Linking string-templates to account-portal"
|
2022-04-22 10:43:51 +02:00
|
|
|
yarn link "@budibase/string-templates"
|
|
|
|
|
2022-05-28 22:38:22 +02:00
|
|
|
echo "Linking types to account-portal"
|
|
|
|
yarn link "@budibase/types"
|
|
|
|
|
2023-04-20 20:04:20 +02:00
|
|
|
if [ -d "../../../budibase-pro" ]; then
|
2022-04-22 10:43:51 +02:00
|
|
|
echo "Linking pro to account-portal"
|
|
|
|
yarn link "@budibase/pro"
|
|
|
|
fi
|
2022-04-13 13:41:14 +02:00
|
|
|
|
2022-06-13 11:51:29 +02:00
|
|
|
cd ../ui
|
|
|
|
echo "Linking bbui to account-portal"
|
|
|
|
yarn link "@budibase/bbui"
|
2022-09-14 11:53:14 +02:00
|
|
|
|
|
|
|
echo "Linking frontend-core to account-portal"
|
|
|
|
yarn link "@budibase/frontend-core"
|
2022-04-13 13:41:14 +02:00
|
|
|
fi
|