fc93c2ee57
The Electron build was accidentally bundling the entire tauri/src-tauri/target Rust build directory into app.asar (1.2GB!), inflating the installer to 304MB. Added a files exclusion so Electron and Tauri builds stay independent.
17 lines
413 B
JSON
17 lines
413 B
JSON
{
|
|
"name": "freight-calculator-pro-tauri",
|
|
"version": "1.3.0",
|
|
"description": "Professional Freight Class Calculator (Tauri shell)",
|
|
"private": true,
|
|
"scripts": {
|
|
"sync": "node sync-frontend.js",
|
|
"dev": "npm run sync && tauri dev",
|
|
"build": "npm run sync && tauri build",
|
|
"serve": "node ../server.js"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.11.2"
|
|
}
|
|
}
|