Skip to content

Commit

Permalink
deps: switch and upgrade @electron/notarize (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsojramos committed Dec 9, 2023
1 parent 2214364 commit 381f960
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
"typescript": "5.2.2"
},
"devDependencies": {
"@electron/notarize": "1.2.4",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.10",
"@types/node": "18.18.0",
Expand All @@ -122,7 +123,7 @@
"css-loader": "6.8.1",
"electron": "^13.1.7",
"electron-builder": "24.6.4",
"electron-notarize": "1.2.2",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nock": "13.3.4",
Expand All @@ -135,8 +136,7 @@
"ts-jest": "29.1.1",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-merge": "5.9.0",
"husky": "8.0.3"
"webpack-merge": "5.9.0"
},
"packageManager": "pnpm@8.9.0",
"lint-staged": {
Expand Down
27 changes: 13 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions scripts/notarize.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { notarize } = require('electron-notarize');
const { notarize } = require('@electron/notarize');

const packageJson = require('../package.json');
const appBundleId = packageJson.build.appId;
Expand All @@ -11,7 +11,7 @@ const notarizeApp = async (context) => {

if (!shouldNotarize || !isMacOS) {
console.log(
' • notarizing either should not notarize or not building for macOS'
' • notarizing either should not notarize or not building for macOS',
);
return;
}
Expand Down

0 comments on commit 381f960

Please sign in to comment.