@muverse/core 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ import groovy.json.JsonGenerator
6
6
  * Returns "version" for root, "{name}.version" for subprojects.
7
7
  */
8
8
  fun Project.qualifiedVersionProperty(): String {
9
- val name = if (name.contains(":")) name.split(':').last() else ""
9
+ val name = if (path.contains(":")) path.split(':').last() else ""
10
10
  return if (name.isEmpty()) "version" else "${name}.version"
11
11
  }
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muverse/core",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Version Engine for Repo Semantic Evolution (Core Library)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",