experiments in a post-browser web
10
fork

Configure Feed

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

fix(build): use dynamic DerivedData path for sim:install

The sim:install script had a hardcoded DerivedData hash that went stale
when Xcode regenerated it, causing installs of old builds. Now finds
the most recent matching build output automatically.

+1 -1
+1 -1
backend/tauri-mobile/package.json
··· 30 30 "sim:launch": "xcrun simctl terminate booted com.dietrich.peek-mobile 2>/dev/null; xcrun simctl launch booted com.dietrich.peek-mobile", 31 31 "sim:log": "xcrun simctl spawn booted log stream --predicate 'process == \"Peek Save\"' --level debug", 32 32 "sim:log:webview": "xcrun simctl spawn booted log stream --predicate 'process == \"Peek Save\" AND eventMessage CONTAINS \"webview\"' --style compact", 33 - "sim:install": "xcrun simctl install booted ~/Library/Developer/Xcode/DerivedData/peek-save-ehfugnwyfhzyqlghrdloqqajrbnd/Build/Products/debug-iphonesimulator/Peek\\ Save.app", 33 + "sim:install": "xcrun simctl install booted \"$(ls -dt ~/Library/Developer/Xcode/DerivedData/peek-save-*/Build/Products/debug-iphonesimulator/Peek\\ Save.app | head -1)\"", 34 34 "xcode:build": "cd src-tauri/gen/apple && xcodebuild -project peek-save.xcodeproj -scheme Peek -destination 'platform=iOS Simulator,name=iPhone 17 Pro' -configuration Debug build" 35 35 }, 36 36 "dependencies": {