diff --git a/README.md b/README.md index 56e7e2d..dd00c41 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # electron-webpack-quick-start -> A bare minimun project structure to get started developing with [`electron-webpack`](https://github.com/electron-userland/electron-webpack). +> A bare minimum project structure to get started developing with [`electron-webpack`](https://github.com/electron-userland/electron-webpack). Thanks to the power of `electron-webpack` this template comes packed with... diff --git a/package.json b/package.json index 45cab27..4390fed 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,12 @@ "dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null" }, "dependencies": { - "source-map-support": "^0.4.16" + "source-map-support": "^0.4.17" }, "devDependencies": { - "electron": "^1.7.5", - "electron-builder": "^19.26.0", - "electron-webpack": "^1.1.0", - "webpack": "^3.5.5" + "electron": "^1.7.6", + "electron-builder": "^19.27.7", + "electron-webpack": "^1.5.0", + "webpack": "^3.5.6" } } diff --git a/src/main/index.js b/src/main/index.js index 6a60c03..f930bad 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -5,7 +5,7 @@ import { app, BrowserWindow } from 'electron' const isDevelopment = process.env.NODE_ENV !== 'production' // Global reference to mainWindow -// Neccessary to prevent win from being garbage collected +// Necessary to prevent win from being garbage collected let mainWindow function createMainWindow () {