Skip to content
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
6 changes: 6 additions & 0 deletions .changeset/fix-repository-field.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@rescale/nemo": patch
---

Fix repository field in package.json by adding directory path for monorepo compatibility

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
"publishConfig": {
"provenance": true
},
"repository": "https://github.com/z4nr34l/nemo",
"repository": {
"type": "git",
"url": "git+https://github.com/z4nr34l/nemo.git"
},
"scripts": {
"build": "turbo build",
"clean": "turbo clean",
Expand All @@ -47,5 +50,6 @@
"workspaces": [
"packages/*",
"apps/docs"
]
}
],
"version": ""
}
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Empty string is not a valid semver version. If the root package doesn't need versioning (common in monorepos), consider removing this field entirely. Otherwise, use a valid version like "0.0.0" or "1.0.0".

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At package.json, line 55:

<comment>Empty string is not a valid semver version. If the root package doesn&#39;t need versioning (common in monorepos), consider removing this field entirely. Otherwise, use a valid version like `&quot;0.0.0&quot;` or `&quot;1.0.0&quot;`.</comment>

<file context>
@@ -47,5 +50,6 @@
\ No newline at end of file
+  ],
+  &quot;version&quot;: &quot;&quot;
+}
</file context>
Fix with Cubic

8 changes: 6 additions & 2 deletions packages/nemo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
"bugs": {
"url": "https://github.com/z4nr34l/nemo/issues"
},
"repository": "https://github.com/z4nr34l/nemo",
"repository": {
"type": "git",
"url": "git+https://github.com/z4nr34l/nemo.git",
"directory": "packages/nemo"
},
"license": "MIT",
"author": "Mateusz Janota <m.janota@zanreal.com>",
"type": "module",
Expand Down Expand Up @@ -83,4 +87,4 @@
"publishConfig": {
"provenance": true
}
}
}
Loading