@linzumi/cli 1.0.130 → 1.0.132
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/README.md +1 -1
- package/dist/impl-res/crossHarnessFailover.mjs +6 -6
- package/dist/impl-res/index.js +58 -58
- package/dist/impl-res/mcp-server.mjs +30 -30
- package/dist/impl-ts/crossHarnessFailover.mjs +6 -6
- package/dist/impl-ts/index.js +341 -341
- package/package.json +1 -1
- package/scripts/bump-cli-version.mjs +5 -3
package/package.json
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
//
|
|
8
8
|
// 1. pnpm bump-version <new-version> (for example: 1.2.3-beta)
|
|
9
9
|
// 2. Run the test suite: pnpm vitest run --config vitest.config.mjs
|
|
10
|
-
// 3. Commit with a "[deploy-
|
|
10
|
+
// 3. Commit with a "[deploy-commander]" title and merge to main (the
|
|
11
|
+
// deprecated "[deploy-cli]" marker stays honored through the N3.2
|
|
12
|
+
// dual-accept window - naming program).
|
|
11
13
|
// 4. The main publish workflow (.github/workflows/linzumi-cli-publish.yml)
|
|
12
14
|
// publishes @linzumi/cli@<new-version> to npm.
|
|
13
15
|
//
|
|
@@ -179,7 +181,7 @@ function appendVersionSpecComment(content) {
|
|
|
179
181
|
' Spec: scripts/bump-cli-version.mjs (automated version bump)',
|
|
180
182
|
` Relationship: Bumps the published CLI version so the`,
|
|
181
183
|
' current mainline CLI can be released under a fresh immutable npm',
|
|
182
|
-
' version with `[deploy-
|
|
184
|
+
' version with `[deploy-commander]`.',
|
|
183
185
|
'',
|
|
184
186
|
].join('\n');
|
|
185
187
|
|
|
@@ -325,6 +327,6 @@ if (dryRun) {
|
|
|
325
327
|
process.stdout.write('Dry run - no files were written.\n');
|
|
326
328
|
} else {
|
|
327
329
|
process.stdout.write(
|
|
328
|
-
'Done. Now run the test suite before committing:\n pnpm vitest run --config vitest.config.mjs\nThen commit with a "[deploy-
|
|
330
|
+
'Done. Now run the test suite before committing:\n pnpm vitest run --config vitest.config.mjs\nThen commit with a "[deploy-commander]" title and merge to main to publish.\n'
|
|
329
331
|
);
|
|
330
332
|
}
|