Skip to content

Commit 45b4237

Browse files
author
Vlad Haidei
authored
Merge pull request #4 from CubikNeRubik/angular-version-update
Angular version upgrade to 8.0.3
2 parents 1693cdc + 1f3ba0b commit 45b4237

File tree

7 files changed

+8134
-7186
lines changed

7 files changed

+8134
-7186
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ This is a start kit for easy launch of Electron, Angular 6 and TypeORM.
3030

3131
Currently runs with:
3232

33-
- Angular v6.1.1
34-
- Electron v2.0.6
35-
- Electron Builder v20.27.0
36-
- Angular Material v6.4.2
37-
- TypeORM v0.2.7
38-
- SQLite v4.0.2
33+
- Angular v8.0.3
34+
- Electron v5.0.4
35+
- Electron Builder v20.44.1
36+
- Angular Material v8.0.1
37+
- TypeORM v0.2.18
38+
- SQLite v4.0.9
3939

4040
With this start kit, you can :
4141

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"architect": {
1717
"build": {
18-
"builder": "angular-cli-builders:custom-webpack-browser",
18+
"builder": "@angular-builders/custom-webpack:browser",
1919
"options": {
2020
"customWebpackConfig": {
2121
"path": "./extra-webpack.config.js"

main.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ let serve: boolean = args.some(val => val === '--serve');
1010

1111
function createWindow() {
1212

13-
win = new BrowserWindow({width: 800, height: 600});
13+
win = new BrowserWindow({
14+
width: 800,
15+
height: 600,
16+
webPreferences: {
17+
nodeIntegration: true
18+
},
19+
});
1420

1521

1622
if (serve) {

0 commit comments

Comments
 (0)