optimization: move icons and windows folders to static folder

This commit is contained in:
Jocs 2018-05-29 23:42:25 +08:00
parent 2259a6e5fd
commit a3a0c80d33
6 changed files with 4 additions and 6 deletions

2
.gitignore vendored
View File

@ -2,8 +2,6 @@
dist/electron/*
dist/web/*
build/*
!build/icons
!build/windows
coverage
.vscode
node_modules/

View File

@ -64,10 +64,10 @@
]
},
"mac": {
"icon": "build/icons/icon.icns"
"icon": "static/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico",
"icon": "static/icons/icon.ico",
"target": [
{
"target": "nsis",
@ -83,11 +83,11 @@
"perMachine": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/windows/installer.nsh"
"include": "static/windows/installer.nsh"
},
"linux": {
"category": "Office;TextEditor;Utility",
"icon": "build/icons"
"icon": "static/icons"
},
"snap": {
"confinement": "classic",

View File

Before

Width:  |  Height:  |  Size: 361 KiB

After

Width:  |  Height:  |  Size: 361 KiB

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB