misc/ Upgrade to Electron 17

This commit is contained in:
Maxime GRIS
2022-02-24 13:17:43 +01:00
parent 21884f502e
commit 4964baee0d
3 changed files with 2853 additions and 3280 deletions

2
app/package-lock.json generated
View File

@@ -1,5 +1,5 @@
{
"name": "angular-electron",
"version": "10.4.1",
"version": "10.5.0",
"lockfileVersion": 1
}

6054
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{
"name": "angular-electron",
"version": "10.4.1",
"description": "Angular 13 with Electron 16 (Typescript + SASS + Hot Reload)",
"version": "10.5.0",
"description": "Angular 13 with Electron 17 (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {
"name": "Maxime GRIS",
@@ -11,7 +11,7 @@
"angular",
"angular 13",
"electron",
"electron 16",
"electron 17",
"nodejs",
"typescript",
"playwright",
@@ -27,10 +27,11 @@
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c web -o",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve -c web -o",
"web:build": "npm run build -- -c web-production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && electron . --serve",
@@ -44,63 +45,63 @@
"lint": "ng lint"
},
"dependencies": {
"@angular/common": "13.0.1",
"@angular/compiler": "13.0.1",
"@angular/core": "13.0.1",
"@angular/forms": "13.0.1",
"@angular/language-service": "13.0.1",
"@angular/platform-browser": "13.0.1",
"@angular/platform-browser-dynamic": "13.0.1",
"@angular/router": "13.0.1",
"rxjs": "7.4.0",
"@angular/common": "13.2.4",
"@angular/compiler": "13.2.4",
"@angular/core": "13.2.4",
"@angular/forms": "13.2.4",
"@angular/language-service": "13.2.4",
"@angular/platform-browser": "13.2.4",
"@angular/platform-browser-dynamic": "13.2.4",
"@angular/router": "13.2.4",
"rxjs": "7.5.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "13.0.0",
"@angular-devkit/build-angular": "13.0.2",
"@angular-eslint/builder": "13.0.0-alpha.0",
"@angular-eslint/eslint-plugin": "13.0.0-alpha.0",
"@angular-eslint/eslint-plugin-template": "13.0.0-alpha.0",
"@angular-eslint/schematics": "13.0.0-alpha.0",
"@angular-eslint/template-parser": "13.0.0-alpha.0",
"@angular/cli": "13.0.2",
"@angular/compiler-cli": "13.0.1",
"@angular-builders/custom-webpack": "13.1.0",
"@angular-devkit/build-angular": "13.2.5",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "13.2.5",
"@angular/compiler-cli": "13.2.4",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@playwright/test": "1.16.3",
"@types/jasmine": "3.10.2",
"@playwright/test": "1.19.1",
"@types/jasmine": "3.10.3",
"@types/jasminewd2": "2.0.10",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"@types/node": "16.11.25",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"conventional-changelog-cli": "2.1.1",
"electron": "16.0.0",
"electron-builder": "22.13.1",
"electron": "17.1.0",
"electron-builder": "22.14.13",
"electron-reload": "1.5.0",
"eslint": "8.2.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "37.0.3",
"eslint": "8.9.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.9.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "3.10.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.9",
"karma": "6.3.16",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "7.1.0",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"node-polyfill-webpack-plugin": "1.1.4",
"npm-run-all": "4.1.5",
"playwright": "1.16.3",
"ts-node": "10.4.0",
"typescript": "~4.4.4",
"wait-on": "6.0.0",
"playwright": "1.19.1",
"ts-node": "10.5.0",
"typescript": "~4.5.5",
"wait-on": "6.0.1",
"webdriver-manager": "12.1.8"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"chrome 91"
"chrome 98"
]
}