mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Replace the 855-line managed-daemon-smoke.mjs (which spawned relay servers, daemons, and tested E2E connectivity in CI) with a fast validate-managed-runtime.mjs that checks the bundle is correctly assembled without launching any processes. Structural changes: - Eliminate double-build: removed the pre-build step that compiled the Tauri app just for smoke testing before tauri-action rebuilt it - Move version-setting before the build so there's no version confusion - Sign managed runtime before tauri-action build (macOS) - Smoke tags now do a real tauri build instead of --no-bundle, giving actual signal about whether the release would succeed - Reduce each platform job from ~15 steps to ~12 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
741 B
JSON
19 lines
741 B
JSON
{
|
|
"name": "@getpaseo/desktop",
|
|
"version": "0.1.24",
|
|
"private": true,
|
|
"description": "Paseo desktop app (Tauri wrapper)",
|
|
"scripts": {
|
|
"build:managed-runtime": "node ./scripts/build-managed-runtime.mjs",
|
|
"prepare:managed-runtime": "npm --prefix ../.. run build:daemon && npm run build:managed-runtime",
|
|
"dev": "npm run prepare:managed-runtime && tauri dev",
|
|
"build": "npm --prefix ../.. run build:web --workspace=@getpaseo/app && npm run prepare:managed-runtime && tauri build",
|
|
"validate:managed-runtime": "node ./scripts/validate-managed-runtime.mjs",
|
|
"smoke:managed-daemon": "node ./scripts/managed-daemon-smoke.mjs",
|
|
"tauri": "tauri"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.9.6"
|
|
}
|
|
}
|