// This is a placeholder notarize script that does nothing for non-macOS platforms // Only necessary for macOS app store submissions exports.default = async function notarizing(context) { // Only notarize macOS builds if (context.electronPlatformName !== 'darwin') { console.log('Skipping notarization for non-macOS platform'); return; } // For macOS, we would implement actual notarization here console.log('This is where macOS notarization would happen'); // We're just returning with no action for non-macOS builds };