diff --git a/.gitignore b/.gitignore index 1ef6bc43..0aa8cadd 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/src/main/main.ts b/src/main/main.ts index 63661728..7b31c589 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -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'; diff --git a/src/package.json b/src/package.json index ab2e6375..b64b4807 100644 --- a/src/package.json +++ b/src/package.json @@ -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", diff --git a/tsconfig.json b/tsconfig.json index 7c9f6c23..626dd583 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,7 +30,7 @@ "exclude": [ "test", "release", - "src/main.prod.js", + "src/main.js", "src/renderer.prod.js", "src/dist", ".erb/dll"