@muverse/core 0.1.7 → 0.1.9

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.
@@ -80,7 +80,9 @@ gradle.rootProject {
80
80
  val version = if (project.version == "unspecified") null else project.version
81
81
  val type = if (project == gradle.rootProject) "root" else "module"
82
82
  val versionPropertyKey = project.qualifiedVersionProperty()
83
- val versionFromProperty = project.findProperty(versionPropertyKey) as? String
83
+ val versionFromProperty = (project.findProperty(versionPropertyKey) as? String)?.takeIf {
84
+ it.isNotBlank() && it != "unspecified"
85
+ }
84
86
 
85
87
  projectData[project.path] = mapOf(
86
88
  "path" to path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muverse/core",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Version Engine for Repo Semantic Evolution (Core Library)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",