refactor: rename app to aryx

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-03-25 21:11:36 +01:00
co-authored by Copilot
parent cb7f216bc3
commit ab4e217d74
26 changed files with 81 additions and 81 deletions
+11 -11
View File
@@ -13,10 +13,10 @@ describe('resolveReleaseTarget', () => {
arch: 'x64',
platformLabel: 'windows',
dotnetRuntime: 'win-x64',
outputDirectoryName: 'Eryx-windows-x64',
archiveBaseName: 'Eryx-windows-x64',
outputDirectoryName: 'Aryx-windows-x64',
archiveBaseName: 'Aryx-windows-x64',
sidecarExecutableName: 'Eryx.AgentHost.exe',
packagedExecutableName: 'Eryx.exe',
packagedExecutableName: 'Aryx.exe',
});
});
@@ -26,10 +26,10 @@ describe('resolveReleaseTarget', () => {
arch: 'arm64',
platformLabel: 'macos',
dotnetRuntime: 'osx-arm64',
outputDirectoryName: 'Eryx-macos-arm64',
archiveBaseName: 'Eryx-macos-arm64',
outputDirectoryName: 'Aryx-macos-arm64',
archiveBaseName: 'Aryx-macos-arm64',
sidecarExecutableName: 'Eryx.AgentHost',
appBundleName: 'Eryx.app',
appBundleName: 'Aryx.app',
});
});
@@ -39,16 +39,16 @@ describe('resolveReleaseTarget', () => {
arch: 'x64',
platformLabel: 'linux',
dotnetRuntime: 'linux-x64',
outputDirectoryName: 'Eryx-linux-x64',
archiveBaseName: 'Eryx-linux-x64',
outputDirectoryName: 'Aryx-linux-x64',
archiveBaseName: 'Aryx-linux-x64',
sidecarExecutableName: 'Eryx.AgentHost',
packagedExecutableName: 'Eryx',
packagedExecutableName: 'Aryx',
});
});
test('exports the expected product metadata constants', () => {
expect(productName).toBe('Eryx');
expect(macBundleIdentifier).toBe('com.davidkaya.eryx');
expect(productName).toBe('Aryx');
expect(macBundleIdentifier).toBe('com.davidkaya.aryx');
});
test('rejects unsupported platforms', () => {