mirror of
https://github.com/NeuralNomadsAI/CodeNomad.git
synced 2026-08-25 16:22:28 +00:00
Set every workspace and desktop package to 0.20.0-dev-v2 so local packaged builds use the isolated V2 identity without temporary version overrides or runtime environment variables. Teach Electron and Tauri channel detection to recognize both the baseline form ending in -dev-v2 and dated release versions such as -dev-v2-20260825-abcdef12. CI can continue replacing the baseline with unique prerelease versions. Validated with workspace and server typechecks, Electron startup tests, the targeted Tauri identity test, and a complete Tauri release build.
20 lines
691 B
JSON
20 lines
691 B
JSON
{
|
|
"name": "@codenomad/tauri-app",
|
|
"version": "0.20.0-dev-v2",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "tauri dev",
|
|
"dev:ui": "npm run dev --workspace @codenomad/ui",
|
|
"dev:prep": "node ./scripts/dev-prep.js",
|
|
"dev:bootstrap": "npm run dev:prep && npm run dev:ui",
|
|
"sync:version": "node ./scripts/sync-tauri-version.js",
|
|
"prebuild": "node ./scripts/prebuild.js",
|
|
"bundle:server": "npm run prebuild",
|
|
"build": "tauri build",
|
|
"smoke:resources": "node ../../scripts/smoke-packaged-resources.cjs --resources src-tauri/resources --loading src-tauri/resources/ui-loading"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.9.4"
|
|
}
|
|
}
|