Prepare electron releases

This commit is contained in:
Thomas Nordquist
2019-01-01 23:48:35 +01:00
parent b2badfd43f
commit 5697b2daea
19 changed files with 10823 additions and 880 deletions

993
app/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,20 +4,20 @@
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode production"
"build": "webpack --mode production",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"devDependencies": {},
"dependencies": {
"@types/node": "^10.12.18",
"awesome-typescript-loader": "^5.2.1",
"source-map-loader": "^0.2.4",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"webpack-dev-server": "^3.1.14",
"@material-ui/core": "^3.7.1",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",

View File

@@ -4,6 +4,11 @@ module.exports = {
filename: "bundle.js",
path: __dirname + "/build"
},
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false,
},
mode: 'production',