Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ui components missing in release #61

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ basic-auth = "mlflow_oidc_auth.client:AuthServiceClient"
[tool.setuptools.package-data]
mlflow_oidc_auth = [
"db/migrations/alembic.ini",
"menu.html",
"hack/menu.html",
"static/*",
"templates/*",
"ui/*",
Expand Down
8 changes: 4 additions & 4 deletions scripts/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
export MLFLOW_OIDC_AUTH_VERSION=${1:-0.0.0.dev0}
pushd web-ui
yarn install
yarn release
popd
pushd web-ui &&\
yarn install &&\
yarn release &&\
popd &&\
python -m build
2 changes: 1 addition & 1 deletion web-ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumError": "10mb"
},
{
"type": "anyComponentStyle",
Expand Down
Loading