@liangjie559567/ultrapower 5.5.27 → 5.5.28
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.
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
{
|
|
9
9
|
"name": "ultrapower",
|
|
10
10
|
"description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
|
|
11
|
-
"version": "5.5.
|
|
11
|
+
"version": "5.5.28",
|
|
12
12
|
"source": {
|
|
13
13
|
"source": "npm",
|
|
14
14
|
"package": "@liangjie559567/ultrapower",
|
|
15
|
-
"version": "5.5.
|
|
15
|
+
"version": "5.5.28"
|
|
16
16
|
},
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "liangjie559567"
|
package/package.json
CHANGED
package/scripts/bump-version.mjs
CHANGED
|
@@ -10,6 +10,7 @@ const FILES = {
|
|
|
10
10
|
pkg: resolve('package.json'),
|
|
11
11
|
plugin: resolve('.claude-plugin/plugin.json'),
|
|
12
12
|
marketplace: resolve('.claude-plugin/marketplace.json'),
|
|
13
|
+
rootMarketplace: resolve('marketplace.json'),
|
|
13
14
|
};
|
|
14
15
|
|
|
15
16
|
export function readVersions() {
|
|
@@ -63,6 +64,11 @@ export function bumpVersion(newVersion) {
|
|
|
63
64
|
}
|
|
64
65
|
writeFileSync(FILES.marketplace, JSON.stringify(market, null, 2) + '\n');
|
|
65
66
|
|
|
67
|
+
// root marketplace.json
|
|
68
|
+
const rootMarket = JSON.parse(readFileSync(FILES.rootMarketplace, 'utf-8'));
|
|
69
|
+
rootMarket.version = newVersion;
|
|
70
|
+
writeFileSync(FILES.rootMarketplace, JSON.stringify(rootMarket, null, 2) + '\n');
|
|
71
|
+
|
|
66
72
|
console.log(`Bumped all version files to ${newVersion}`);
|
|
67
73
|
}
|
|
68
74
|
|
|
@@ -97,8 +97,8 @@ export async function syncMarketplace(opts = {}) {
|
|
|
97
97
|
|
|
98
98
|
try {
|
|
99
99
|
run(`git commit -m "chore: sync marketplace.json to v${version}"`, dryRun);
|
|
100
|
-
run(`git push origin HEAD:
|
|
101
|
-
console.log(`syncMarketplace: updated to v${version} and pushed to
|
|
100
|
+
run(`git push origin HEAD:dev`, dryRun);
|
|
101
|
+
console.log(`syncMarketplace: updated to v${version} and pushed to dev`);
|
|
102
102
|
} catch (err) {
|
|
103
103
|
if (err.message?.includes('nothing to commit')) {
|
|
104
104
|
console.log(`syncMarketplace: no changes to commit (already at v${version})`);
|
|
@@ -9,6 +9,7 @@ const files = [
|
|
|
9
9
|
{ path: 'package.json', extract: (c) => JSON.parse(c).version },
|
|
10
10
|
{ path: '.claude-plugin/plugin.json', extract: (c) => JSON.parse(c).version },
|
|
11
11
|
{ path: '.claude-plugin/marketplace.json', extract: (c) => JSON.parse(c).plugins?.[0]?.version },
|
|
12
|
+
{ path: 'marketplace.json', extract: (c) => JSON.parse(c).version },
|
|
12
13
|
];
|
|
13
14
|
|
|
14
15
|
function validateVersions() {
|