fix: ensure macOS mpv window helper is built and bundled correctly (#93)

This commit is contained in:
2026-05-27 13:34:51 -07:00
committed by GitHub
parent 29cb8c7fb4
commit f033f87329
7 changed files with 145 additions and 5 deletions
+8
View File
@@ -190,6 +190,14 @@ test('release packaging stages generated launcher as an app resource', () => {
assert.match(packageJson.scripts['build:launcher'] ?? '', /--banner='#!\/usr\/bin\/env bun'/);
});
test('release packaging does not reference removed Windows window helper script', () => {
assert.ok(
!(packageJson.build?.extraResources ?? []).some((resource) =>
[resource.from, resource.to].some((value) => value?.includes('get-mpv-window-windows.ps1')),
),
);
});
test('Makefile clean preserves committed prerelease notes', () => {
assert.match(makefile, /PRERELEASE_NOTES_BACKUP/);
assert.match(makefile, /release\/prerelease-notes\.md/);