From 8f3fc4b3bf7e994aa711ba40ab9ea3e24e1f2432 Mon Sep 17 00:00:00 2001 From: James Cropcho Date: Thu, 12 Apr 2018 19:31:58 -0400 Subject: [PATCH] hide electron icon from osx dock To hide the electron icon from the dock on OS X, it is recommended (electron-userland/electron-builder#1456) to add "extendInfo": {"LSUIElement": 1} to the top-level mac configuration settings. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 4768511d..5549266b 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,9 @@ }, "mac": { "category": "public.app-category.tools", + "extendInfo": { + "LSUIElement": 1 + }, "target": [ "dmg" ]