⬆️ Upgrade electron-builder (#5857)

* upgrade electron-builder

* no postinstall when yarn immutable

* downgrade to last version without the bug

* fix issue with wrappy

* release notes

* regen yarn lock

* react-sprint

* hmm

* update yarn manually...

* fixing spring?

* lock

* finally

* conflict

* put package back
This commit is contained in:
Michael Clark
2025-10-08 22:20:29 +01:00
committed by GitHub
parent 87d54251cd
commit 5b9bcc94f6
10 changed files with 1809 additions and 3044 deletions

View File

@@ -57,6 +57,7 @@ jobs:
CSC_LINK: ${{ secrets.CSC_LINK }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
- name: Build Electron
if: ${{ ! startsWith(matrix.os, 'macos') }}
run: ./bin/package-electron

3
.gitignore vendored
View File

@@ -7,9 +7,6 @@ Actual-*
**/xcuserdata/*
export-2020-01-10.csv
# Secrets
.secret-tokens
# MacOS
.DS_Store

View File

@@ -1,2 +0,0 @@
export APPLE_ID=example@email.com
export APPLE_APP_SPECIFIC_PASSWORD=password

View File

@@ -62,14 +62,11 @@ yarn workspace desktop-electron update-client
echo "Skipping exe build"
else
if [ "$RELEASE" == "production" ]; then
if [ -f ../../.secret-tokens ]; then
source ../../.secret-tokens
fi
yarn build
echo "Created release"
else
SKIP_NOTARIZATION=true yarn build
yarn build
fi
fi
)

View File

@@ -61,7 +61,7 @@
"react-redux": "^9.2.0",
"react-router": "7.9.4",
"react-simple-pull-to-refresh": "^1.3.3",
"react-spring": "^10.0.0",
"react-spring": "10.0.0",
"react-swipeable": "^7.0.2",
"react-virtualized-auto-sizer": "^1.0.26",
"recharts": "^2.15.3",

View File

@@ -22,7 +22,6 @@ export function AppBackground({ isLoading }: AppBackgroundProps) {
from: { opacity: 0, transform: 'translateY(-100px)' },
enter: { opacity: 1, transform: 'translateY(0)' },
leave: { opacity: 0, transform: 'translateY(100px)' },
unique: true,
});
return (

View File

@@ -22,7 +22,6 @@ export function BankSyncStatus() {
from: { opacity: 0, transform: 'translateY(-100px)' },
enter: { opacity: 1, transform: 'translateY(0)' },
leave: { opacity: 0, transform: 'translateY(-100px)' },
unique: true,
},
);

View File

@@ -34,9 +34,6 @@
"hardenedRuntime": true,
"gatekeeperAssess": false,
"artifactName": "${productName}-mac-${arch}.${ext}",
"notarize": {
"teamId": "79ANZ983YF"
},
"target": [
{
"target": "dmg",
@@ -103,7 +100,7 @@
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"electron": "38.0.0",
"electron-builder": "24.13.3",
"electron-builder": "26.0.12",
"typescript": "^5.9.3"
}
}

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [MikesGlitch]
---
Upgrade electron builder in prep for Liquid Glass icons

4827
yarn.lock

File diff suppressed because it is too large Load Diff