Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [25.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ node_modules/*
Desktop.ini
Thumbs.db
*.log
*.swp
.idea/
compiled/*
dist/*
Expand All @@ -19,6 +20,7 @@ compiled-cloud
electron/*
!electron/.gitkeep
report*.json
src/**/*.js

.now
.vercel
4 changes: 2 additions & 2 deletions build-utils/afterSignHook.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const fs = require('fs')
const path = require('path')
const electron_notarize = require('electron-notarize')
const { notarize } = require('@electron/notarize')

module.exports = async function (params) {
if (process.platform !== 'darwin') {
Expand All @@ -21,7 +21,7 @@ module.exports = async function (params) {
console.log(`Notarizing ${appId} found at ${appPath}`)

try {
await electron_notarize.notarize({
await notarize({
appBundleId: appId,
appPath: appPath,
appleId: process.env.APPLE_ID,
Expand Down
Loading
Loading