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.
This commit is contained in:
windwalkr 2020-12-07 20:26:29 -08:00 committed by GitHub
parent 771e34a53a
commit 6001f03e46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,6 +124,7 @@ Your Electron application uses the `package.json` file as the main entry point (
{ {
"name": "my-electron-app", "name": "my-electron-app",
"version": "0.1.0", "version": "0.1.0",
"description": "My Electron app",
"main": "main.js" "main": "main.js"
} }
``` ```