mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-21 03:39:54 +00:00
89d5ee4b10
Add phase-based desktop boot progress, fresh-install sandbox testing, and first-run provider credential onboarding so packaged installs can start cleanly without manual settings detours.
10 lines
382 B
JavaScript
10 lines
382 B
JavaScript
/**
|
|
* Desktop bundles ship precompiled renderer assets and a staged Hermes payload
|
|
* from extraResources. 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.
|
|
*/
|
|
module.exports = async function beforeBuild() {
|
|
return false
|
|
}
|