From 6001f03e46d944169ea3b4680fe3de0bd4fa92e6 Mon Sep 17 00:00:00 2001 From: windwalkr Date: Mon, 7 Dec 2020 20:26:29 -0800 Subject: [PATCH] docs: add description to read-me.md (#26823) Unhandled exception error is received if description is not defined while running "npm run make." Defining a description solves this issue. --- docs/tutorial/quick-start.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorial/quick-start.md b/docs/tutorial/quick-start.md index b3edca05f7..e264453b96 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -124,6 +124,7 @@ Your Electron application uses the `package.json` file as the main entry point ( { "name": "my-electron-app", "version": "0.1.0", + "description": "My Electron app", "main": "main.js" } ```