Skip to content

Commit dad13c8

Browse files
committed
fix(ci): allowlist the build-script consolidation in the no-main-deletions guard
build-audio-fx-runtime.ts and build-position-edits-render.ts were merged into build-inline-artifact.ts to kill a fallow duplication finding; the deletion guard flagged that as an accidental loss since main still has both originals.
1 parent 55b20e6 commit dad13c8

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

scripts/check-no-main-deletions.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ export const ALLOWED_DELETIONS = new Map([
4949
"skills/embedded-captions/themes/PORTING.md",
5050
"#3219: same, zero inbound references; a theme-authoring procedure whose inputs (cap_fx3 demos, frame corpora, CONTRACT.md) are not distributed with the skill",
5151
],
52+
[
53+
"packages/core/scripts/build-audio-fx-runtime.ts",
54+
"merged into build-inline-artifact.ts: this and build-position-edits-render.ts were a byte-for-byte clone differing only in five names, which fallow's duplication check kept re-flagging on every unrelated line shift",
55+
],
56+
[
57+
"packages/core/scripts/build-position-edits-render.ts",
58+
"merged into build-inline-artifact.ts, same reason as build-audio-fx-runtime.ts above",
59+
],
5260
]);
5361

5462
export function parseBase(argv, fallback = "origin/main") {

0 commit comments

Comments
 (0)