Build the app
This section is the final step when you want to release the app
Release the project
Before you build the project please make sure that
You set a version for the project
You don't have any crash
All the developers finished their code and write tests for new parts
The project pass all the tests
Be sure that the app is passing all of the tests
The build stage
Enter this command for building the app
$ yarn electron-pack
This command runs 2 different steps 1. Build the react app - you can see the 'build' folder 2. Build the electron folder - 'dist' folder with the .exe file inside
The app is a portable app, therefore you only need the .exe file to release
Last updated
Was this helpful?