it was panful to generate all icons for Electron-React-Boilerplate each time there are changes in the icon. So i created this package to generate all icons from single icon.png in the resources directory of Electron-React-Boilerplate
npm install --save-dev erb-icons-gen@latest
# or
yarn add -D erb-icons-gen@latest
"scripts": {
"gen:icons" : "erb-generate --input resources/icon.png --output resources/"
}
make sure that you have icon.png in your resources
directory and run the following command in your project root.
npm run gen:icons
# or
yarn gen:icons