1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

Merge pull request #5531 from Budibase/pro-build-fixes

Pro build fixes
This commit is contained in:
Rory Powell 2022-04-22 09:47:17 +01:00 committed by GitHub
commit 12fc5dccfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 16 deletions

View file

@ -70,7 +70,7 @@
"@apidevtools/swagger-parser": "^10.0.3",
"@budibase/backend-core": "^1.0.105-alpha.27",
"@budibase/client": "^1.0.105-alpha.27",
"@budibase/pro": "^1.0.0",
"@budibase/pro": "1.0.105-alpha.25",
"@budibase/string-templates": "^1.0.105-alpha.27",
"@bull-board/api": "^3.7.0",
"@bull-board/koa": "^3.7.0",

View file

@ -1087,12 +1087,13 @@
svelte-flatpickr "^3.2.3"
svelte-portal "^1.0.0"
"@budibase/pro@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-1.0.0.tgz#9f38a43b39a886a5c54afae13f20d13104da648e"
integrity sha512-W4sGodU7cr8AugIJtsMxgaVoHChv7Lmax6bVoIkz9WVWwa0vuigAZXZuESg7hHdXI/+IvuKDS9dCSw1nuP/LhQ==
"@budibase/pro@1.0.105-alpha.25":
version "1.0.105-alpha.25"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-1.0.105-alpha.25.tgz#48f69f95f39c78fb93a08c76929afa9f900dc661"
integrity sha512-i1L2qLR1H7yP+mn0bnqBKIM3oCC6NIbbSIkZRNBLi+0HXncbx130I4fudgfgXBK/ucbSi9W/hVMav9ObYywxCA==
dependencies:
"@budibase/backend-core" "^1.0.48"
node-fetch "^2.6.1"
"@budibase/standard-components@^0.9.139":
version "0.9.139"

View file

@ -32,8 +32,8 @@
"license": "GPL-3.0",
"dependencies": {
"@budibase/backend-core": "^1.0.105-alpha.27",
"@budibase/pro": "^1.0.0",
"@budibase/string-templates": "^1.0.105-alpha.27",
"@budibase/pro": "1.0.105-alpha.25",
"@koa/router": "^8.0.0",
"@sentry/node": "6.17.7",
"@techpass/passport-openidconnect": "^0.3.0",

View file

@ -310,12 +310,13 @@
uuid "^8.3.2"
zlib "^1.0.5"
"@budibase/pro@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-1.0.0.tgz#9f38a43b39a886a5c54afae13f20d13104da648e"
integrity sha512-W4sGodU7cr8AugIJtsMxgaVoHChv7Lmax6bVoIkz9WVWwa0vuigAZXZuESg7hHdXI/+IvuKDS9dCSw1nuP/LhQ==
"@budibase/pro@1.0.105-alpha.25":
version "1.0.105-alpha.25"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-1.0.105-alpha.25.tgz#48f69f95f39c78fb93a08c76929afa9f900dc661"
integrity sha512-i1L2qLR1H7yP+mn0bnqBKIM3oCC6NIbbSIkZRNBLi+0HXncbx130I4fudgfgXBK/ucbSi9W/hVMav9ObYywxCA==
dependencies:
"@budibase/backend-core" "^1.0.48"
node-fetch "^2.6.1"
"@cspotcode/source-map-consumer@0.8.0":
version "0.8.0"

View file

@ -32,9 +32,12 @@ if [ -d "../account-portal" ]; then
yarn link "@budibase/backend-core"
echo "Linking string-templates to account-portal"
yarn link "@budibase/pro"
yarn link "@budibase/string-templates"
if [ -d "../../../budibase-pro" ]; then
echo "Linking pro to account-portal"
yarn link "@budibase/pro"
fi
echo "Linking pro to account-portal"
yarn link "@budibase/pro"
cd -
fi

View file

@ -3,15 +3,15 @@ if [[ -z "${CI}" ]]; then
exit 0
fi
# Release pro as same version as budibase
VERSION=$(jq -r .version lerna.json)
# Go to pro package
cd ../budibase-pro
# Install NPM credentials
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
# Release pro as same version as budibase
VERSION=$(jq -r .version lerna.json)
# Determine tag to use
COMMAND=$1
TAG=""