@mstar-harness/cli 3.6.0 → 3.6.1
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.
- package/dist/mstar-harness.js +1 -2
- package/package.json +1 -1
package/dist/mstar-harness.js
CHANGED
|
@@ -11983,7 +11983,6 @@ function marketplacePluginEntry() {
|
|
|
11983
11983
|
name: PLUGIN_NAME,
|
|
11984
11984
|
source: { ...GITHUB_SOURCE },
|
|
11985
11985
|
description: PLUGIN_DESCRIPTION,
|
|
11986
|
-
version: readHarnessVersion(),
|
|
11987
11986
|
category: PLUGIN_CATEGORY
|
|
11988
11987
|
};
|
|
11989
11988
|
}
|
|
@@ -12051,7 +12050,7 @@ function validateMarketplaceJson() {
|
|
|
12051
12050
|
errors2.push(`ZCode marketplace plugin source.repo must be ${expected.source.repo}.`);
|
|
12052
12051
|
}
|
|
12053
12052
|
const expectedVersion = readHarnessVersion();
|
|
12054
|
-
if (entry.version !== expectedVersion) {
|
|
12053
|
+
if (entry.version !== undefined && entry.version !== expectedVersion) {
|
|
12055
12054
|
errors2.push(`ZCode marketplace plugin version must be ${expectedVersion}.`);
|
|
12056
12055
|
}
|
|
12057
12056
|
return errors2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mstar-harness/cli",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"description": "Morning Star harness CLI — installer bootstrap + mstar workflow verbs (path/status/lease/sdd/iteration/dispatch/worktree/lint/design-md/audit/compound/host/skill).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|