mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-15 14:22:43 +00:00
11 lines
506 B
JavaScript
11 lines
506 B
JavaScript
/**
|
|
* Desktop bundles ship precompiled renderer assets. Returning false here tells
|
|
* electron-builder to skip the node_modules collector/install step, which
|
|
* avoids workspace dependency graph explosions and keeps packaging
|
|
* deterministic across environments. The Hermes Agent Python payload is no
|
|
* longer bundled; the Electron app fetches it at first launch via
|
|
* `install.ps1`'s stage protocol (Windows). See `electron/main.ts`.
|
|
*/
|
|
export default async function beforeBuild() {
|
|
return false
|
|
}
|