experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(build): pin Node version to 24.11.1 to match Electron 40

Pin .nvmrc and package.json engines to exact Node version bundled
with Electron 40 to prevent better-sqlite3 ABI mismatch. Add
check:native to dev:electron entry point.

+3 -3
+1 -1
.nvmrc
··· 1 - 24 1 + 24.11.1
+2 -2
package.json
··· 6 6 "author": "dietrich ayala", 7 7 "license": "MIT", 8 8 "engines": { 9 - "node": ">=24.0.0" 9 + "node": "24.11.1" 10 10 }, 11 11 "type": "module", 12 12 "repository": { ··· 21 21 "agent-setup": "git -C .agent-workflow pull 2>/dev/null || git clone https://tangled.sh/burrito.space/multi-agent-workflow .agent-workflow && echo 'Agent workflow updated!'", 22 22 "//-- Development (BACKEND=electron|tauri, defaults to electron) --//": "", 23 23 "dev": "[ \"${BACKEND:-}\" = \"tauri\" ] && yarn dev:tauri || yarn dev:electron", 24 - "dev:electron": "./scripts/timed.sh sh -c 'yarn build && DEBUG=1 electron .'", 24 + "dev:electron": "./scripts/timed.sh sh -c 'yarn check:native && yarn build && DEBUG=1 electron .'", 25 25 "dev:tauri": "./scripts/timed.sh sh -c 'cd backend/tauri/src-tauri && cargo run'", 26 26 "dev:hot": "yarn build && nodemon --exec 'yarn build && DEBUG=1 electron .'", 27 27 "//-- Production --//": "",