Skip to content

Commit

Permalink
Merge pull request #132 from hbcarlos/fix_build
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
hbcarlos authored Aug 11, 2022
2 parents 00b86bd + e307bc8 commit e2d3f97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quetz_frontend/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@
"@quetz-frontend/user-extension": "../../packages/user-extension"
}
}
}
}
6 changes: 5 additions & 1 deletion scripts/bump-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,13 @@ def bump(force, spec):
lerna_cmd = f"{LERNA_CMD} {js_version}"
if force:
lerna_cmd += " --yes"
run(lerna_cmd)

# update the resolutions in the app package.json
# Doing it before running `lerna version`` so lerna will
# prettify the files
_update_resolutions("@quetz-frontend", "~{}".format(js_version))
run(lerna_cmd)


def _update_resolutions(package, version):
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ packages = find:
python_requires = >=3.7
install_requires =
typer>=0.4.1
quetz-server
quetz-server~=0.4
pydantic

[options.entry_points]
Expand Down

0 comments on commit e2d3f97

Please sign in to comment.