We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8aed7e commit 735b462Copy full SHA for 735b462
jupyter_releaser/npm.py
@@ -149,7 +149,7 @@ def get_package_versions(version):
149
message += f'\nnpm version: {data["name"]}: {npm_version}'
150
if "workspaces" in data:
151
message += "\nnpm workspace versions:"
152
- for path in _get_workspace_packages(data):
+ for path in sorted(_get_workspace_packages(data)):
153
text = path.joinpath("package.json").read_text(encoding="utf-8")
154
data = json.loads(text)
155
message += f'\n{data["name"]}: {data.get("version", "")}'
0 commit comments