Skip to content

Commit

Permalink
feat/ update to Angular 9 & Electron 8
Browse files Browse the repository at this point in the history
  • Loading branch information
GRIS Maxime committed Feb 7, 2020
1 parent 320ce2f commit a304034
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 29 deletions.
57 changes: 30 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-electron",
"version": "7.0.0",
"description": "Angular 8 with Electron (Typescript + SASS + Hot Reload)",
"description": "Angular 9 with Electron (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {
"name": "Maxime GRIS",
Expand All @@ -21,7 +21,7 @@
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p ng:serve electron:serve",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
Expand All @@ -39,36 +39,36 @@
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "8.2.0",
"@angular-devkit/build-angular": "0.803.25",
"@angular-eslint/builder": "0.0.1-alpha.17",
"@angular/cli": "8.3.25",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/language-service": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@ngx-translate/core": "11.0.1",
"@angular-builders/custom-webpack": "8.4.1",
"@angular-devkit/build-angular": "0.900.1",
"@angular-eslint/builder": "0.0.1-alpha.18",
"@angular/cli": "9.0.1",
"@angular/common": "9.0.0",
"@angular/compiler": "9.0.0",
"@angular/compiler-cli": "9.0.0",
"@angular/core": "9.0.0",
"@angular/forms": "9.0.0",
"@angular/language-service": "9.0.0",
"@angular/platform-browser": "9.0.0",
"@angular/platform-browser-dynamic": "9.0.0",
"@angular/router": "9.0.0",
"@ngx-translate/core": "12.0.0",
"@ngx-translate/http-loader": "4.0.0",
"@types/jasmine": "3.3.16",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "5.2.7",
"@types/node": "12.6.9",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"@types/node": "12.11.1",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"chai": "4.2.0",
"codelyzer": "5.1.2",
"conventional-changelog-cli": "2.0.32",
"core-js": "3.1.4",
"electron": "8.0.0",
"electron-builder": "22.3.2",
"electron-reload": "1.5.0",
"eslint": "6.6.0",
"eslint-plugin-import": "2.18.2",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.2.0",
Expand All @@ -78,15 +78,18 @@
"karma-jasmine-html-reporter": "1.4.2",
"mocha": "6.2.2",
"npm-run-all": "4.1.5",
"rxjs": "6.5.3",
"spectron": "9.0.0",
"rxjs": "6.5.4",
"spectron": "10.0.1",
"ts-node": "8.3.0",
"typescript": "3.5.3",
"wait-on": "3.3.0",
"typescript": "3.7.5",
"wait-on": "4.0.0",
"webdriver-manager": "12.1.7",
"zone.js": "0.9.1"
"zone.js": "0.10.2"
},
"engines": {
"node": ">=10.9.0"
"node": ">=10.13.0"
},
"dependencies": {
"tslib": "1.10.0"
}
}
2 changes: 0 additions & 2 deletions src/typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ declare var nodeModule: NodeModule;
interface NodeModule {
id: string;
}

declare var window: Window;
interface Window {
process: any;
require: any;
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
Expand Down

0 comments on commit a304034

Please sign in to comment.