Skip to content

Instantly share code, notes, and snippets.

@Geri-Borbas
Last active February 18, 2020 13:44
Show Gist options
  • Save Geri-Borbas/23fdea9e2f21710360379dd71a1aa51e to your computer and use it in GitHub Desktop.
Save Geri-Borbas/23fdea9e2f21710360379dd71a1aa51e to your computer and use it in GitHub Desktop.
Create DMG installer from APP.
  1. Install node-appdmg.
  2. Run with the bare minimum specs below.
{
	"title" : "PRODUCT_NAME",
	"window" :
	{
		"size" :
		{
			"width" : 512,
			"height" : 512
		}
	},
	"contents":
	[
		{
			"x": 256,
			"y": 256,
			"type": "file",
			"path": "PRODUCT_NAME.app"
		}
	]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment