This commit is contained in:
Alfredo Daniel Esponda Cervantes 2024-09-30 11:03:44 -06:00 committed by GitHub
commit 05304eddf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,3 +55,10 @@ $ yarn run <script> # or npm run <script>
| `test` / `unit` | Run unit tests | | `test` / `unit` | Run unit tests |
For more scripts please see `package.json`. For more scripts please see `package.json`.
>[!TIP]
>To improve efficiency during development, you can tr
> 1. Use `yarn dev` instead of `yarn build:bin`. This will automatically reload the window when source code is modified.
> 2. Use `Ctrl+R` to manually reload the application in development mode if needed.
>
> This approach bypasses unnecessary rebuilds and optimizes the developer workflow. However, for CI or release builds, a full rebuild may still be necessary.