You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest a new file macro ${platform} that would match the value of Node.js process.platform property (or change ${os} file macro to match it).
It would avoid some little annoyances in Electron entry file, like process.platform === 'win32' ? 'win' : (process.platform === 'darwin' ? 'mac' : process.platform) tests to match ${os} file macro with process.platform property.
The text was updated successfully, but these errors were encountered:
I would like to suggest a new file macro
${platform}
that would match the value of Node.jsprocess.platform
property (or change${os}
file macro to match it).It would avoid some little annoyances in Electron entry file, like
process.platform === 'win32' ? 'win' : (process.platform === 'darwin' ? 'mac' : process.platform)
tests to match${os}
file macro withprocess.platform
property.The text was updated successfully, but these errors were encountered: