Skip to content

Commit

Permalink
Update app entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelenas committed Jan 6, 2024
1 parent ac34c44 commit b5b84ce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ node_modules

# App packaged
/release
/src/main.js
/src/main.js.map
/src/main.prod.js
/src/main.prod.js.map
/src/renderer.prod.js
Expand Down
2 changes: 1 addition & 1 deletion src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* through IPC.
*
* When running `yarn build` or `yarn build-main`, this file is compiled to
* `./src/main.prod.js` using webpack. This gives us some performance wins.
* `./src/main.js` using webpack. This gives us some performance wins.
*/
import 'reflect-metadata';
import 'core-js/stable';
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "ExpressLRS Configurator",
"version": "1.6.1",
"description": "Cross platform configuration tool for the ExpressLRS firmware",
"main": "./main.prod.js",
"main": "./main.js",
"author": {
"name": "ExpressLRS Configurator Contributors",
"email": "info@expresslrs.org",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"exclude": [
"test",
"release",
"src/main.prod.js",
"src/main.js",
"src/renderer.prod.js",
"src/dist",
".erb/dll"
Expand Down

0 comments on commit b5b84ce

Please sign in to comment.