@wipcomputer/wip-ai-devops-toolbox 1.9.70 → 1.9.71-alpha.10
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/CHANGELOG.md +212 -0
- package/RELEASE-NOTES-v1-9-71-alpha-7.md +60 -0
- package/RELEASE-NOTES-v1-9-71-alpha-8.md +50 -0
- package/RELEASE-NOTES-v1-9-72-alpha-1.md +30 -0
- package/package.json +1 -1
- package/tools/deploy-public/deploy-public.sh +43 -3
- package/tools/deploy-public/package.json +1 -1
- package/tools/wip-branch-guard/RELEASE-NOTES-v1-9-64.md +23 -0
- package/tools/wip-branch-guard/guard.mjs +25 -1
- package/tools/wip-branch-guard/package.json +1 -1
- package/tools/wip-branch-guard/test.sh +3 -0
- package/tools/wip-file-guard/guard.mjs +14 -2
- package/tools/wip-file-guard/package.json +1 -1
- package/tools/wip-file-guard/test.sh +22 -0
- package/tools/wip-release/cli.js +11 -1
- package/tools/wip-release/core.mjs +538 -149
- package/tools/wip-release/package.json +1 -1
package/tools/wip-release/cli.js
CHANGED
|
@@ -23,6 +23,8 @@ const skipStaleCheck = args.includes('--skip-stale-check');
|
|
|
23
23
|
const skipWorktreeCheck = args.includes('--skip-worktree-check');
|
|
24
24
|
const skipTechDocsCheck = args.includes('--skip-tech-docs-check');
|
|
25
25
|
const skipCoverageCheck = args.includes('--skip-coverage-check');
|
|
26
|
+
const allowSubToolDrift = args.includes('--allow-sub-tool-drift');
|
|
27
|
+
const noDeployPublic = args.includes('--no-deploy-public');
|
|
26
28
|
const wantReleaseNotes = args.includes('--release-notes');
|
|
27
29
|
const noReleaseNotes = args.includes('--no-release-notes');
|
|
28
30
|
const notesFilePath = flag('notes-file');
|
|
@@ -171,7 +173,9 @@ Flags:
|
|
|
171
173
|
--no-publish Bump + tag only, skip npm/GitHub
|
|
172
174
|
--skip-product-check Skip product docs check (dev update, roadmap, readme-first)
|
|
173
175
|
--skip-stale-check Skip stale remote branch check
|
|
174
|
-
--skip-worktree-check Skip worktree guard (
|
|
176
|
+
--skip-worktree-check Skip main-branch + worktree guard (break-glass only)
|
|
177
|
+
--allow-sub-tool-drift Allow release even if a sub-tool's files changed since the last tag without a version bump (error by default)
|
|
178
|
+
--no-deploy-public Skip the deploy-public.sh step at the end of stable and prerelease flows (runs by default for -private repos)
|
|
175
179
|
|
|
176
180
|
Release notes (REQUIRED for stable, optional for other tracks):
|
|
177
181
|
1. --notes-file=path Explicit file path
|
|
@@ -220,6 +224,9 @@ if (level === 'alpha' || level === 'beta') {
|
|
|
220
224
|
dryRun,
|
|
221
225
|
noPublish,
|
|
222
226
|
publishReleaseNotes: level === 'alpha' ? wantReleaseNotes : !noReleaseNotes,
|
|
227
|
+
skipWorktreeCheck,
|
|
228
|
+
allowSubToolDrift,
|
|
229
|
+
noDeployPublic,
|
|
223
230
|
}).catch(err => {
|
|
224
231
|
console.error(` \u2717 ${err.message}`);
|
|
225
232
|
process.exit(1);
|
|
@@ -234,6 +241,7 @@ if (level === 'alpha' || level === 'beta') {
|
|
|
234
241
|
noPublish,
|
|
235
242
|
publishReleaseNotes: !noReleaseNotes,
|
|
236
243
|
skipWorktreeCheck,
|
|
244
|
+
allowSubToolDrift,
|
|
237
245
|
}).catch(err => {
|
|
238
246
|
console.error(` \u2717 ${err.message}`);
|
|
239
247
|
process.exit(1);
|
|
@@ -252,6 +260,8 @@ if (level === 'alpha' || level === 'beta') {
|
|
|
252
260
|
skipWorktreeCheck,
|
|
253
261
|
skipTechDocsCheck,
|
|
254
262
|
skipCoverageCheck,
|
|
263
|
+
allowSubToolDrift,
|
|
264
|
+
noDeployPublic,
|
|
255
265
|
}).catch(err => {
|
|
256
266
|
console.error(` \u2717 ${err.message}`);
|
|
257
267
|
process.exit(1);
|