()
| 27 | |
| 28 | const appDir = fileURLToPath(new URL("../../apps/desktop/", import.meta.url)); |
| 29 | const hostBundle = () => { |
| 30 | const app = join(appDir, "dist", "mac-arm64", "Executor.app"); |
| 31 | return { |
| 32 | app, |
| 33 | exe: join(app, "Contents/MacOS/Executor"), |
| 34 | executor: join(app, "Contents/Resources/executor/executor"), |
| 35 | }; |
| 36 | }; |
| 37 | |
| 38 | /** Build the packaged mac bundle if it isn't on disk (slow; reuse an existing |
| 39 | * dist/ while iterating). Mirrors desktop-packaged.globalsetup. */ |
no outgoing calls
no test coverage detected