-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid character in description & author
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "electron-boilerplate", | ||
"productName": "electron-boilerplate", | ||
"description": "The latest & updated angular + electron boilerplate with many tweaks !", | ||
"description": "The latest and updated angular electron boilerplate with many tweaks", | ||
"license": "MIT", | ||
"author": "Teddy Fontaine <[email protected]>", | ||
"author": "Teddy Fontaine", | ||
"version": "11.2.1", | ||
"main": "app.js", | ||
"scripts": { | ||
|
@@ -21,9 +21,9 @@ | |
"start:electron:hotreload": "concurrently \"ng build --base-href '' --watch \" \"electron-forge start .\"", | ||
"package": "electron-forge package --arch=x64 --platform=darwin,linux,win32", | ||
"make": "electron-forge make", | ||
"make:mac": "electron-forge make --arch=x64 --plateform darwin", | ||
"make:linux": "electron-forge make --arch=x64 --plateform linux", | ||
"make:win32": "electron-forge make --arch=x64 --platform win32" | ||
"make:mac": "electron-forge make --arch=x64 --plateform=darwin", | ||
"make:linux": "electron-forge make --arch=x64 --plateform=linux", | ||
"make:win32": "electron-forge make --arch=x64 --platform=win32" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
|