[Bumped Version] 10.4.0

This commit is contained in:
Maxime GRIS
2021-11-17 15:00:21 +01:00
parent 65d285c809
commit 7a4f527241
7 changed files with 873 additions and 3784 deletions

View File

@@ -1,5 +1,14 @@
## 10.4.0 (2021-11-17)
* misc/ upgrade to Angular 12.2.13 ([74df637](https://github.com/maximegris/angular-electron/commit/74df637))
* misc/ upgrade to Electron 16 ([65d285c](https://github.com/maximegris/angular-electron/commit/65d285c))
* misc/ upgrade wait-on dependency ([e427f26](https://github.com/maximegris/angular-electron/commit/e427f26))
## <small>10.3.1 (2021-11-17)</small>
* [Bumped Version] 10.3.1 ([ebde830](https://github.com/maximegris/angular-electron/commit/ebde830))
* fix/ TS Config : module resolution in main process ([a9d3044](https://github.com/maximegris/angular-electron/commit/a9d3044))

10
app/package-lock.json generated
View File

@@ -1,5 +1,5 @@
{
"name": "angular-electron",
"version": "10.3.1",
"lockfileVersion": 1
}
{
"name": "angular-electron",
"version": "10.4.0",
"lockfileVersion": 1
}

View File

@@ -1,6 +1,6 @@
{
"name": "angular-electron",
"version": "10.3.1",
"version": "10.4.0",
"main": "main.js",
"private": true,
"dependencies": {}

4586
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "angular-electron",
"version": "10.3.1",
"version": "10.4.0",
"description": "Angular 12 with Electron 16 (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {

View File

@@ -2,7 +2,6 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "es2015",
"baseUrl": "",
"types": []
},

View File

@@ -1,24 +1,23 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"module": "commonjs",
"types": [
"jasmine",
"node"
]
},
"files": [
"test.ts",
"polyfills-test.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": [
"dist",
"release",
"node_modules"
]
}
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"types": [
"jasmine",
"node"
]
},
"files": [
"test.ts",
"polyfills-test.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": [
"dist",
"release",
"node_modules"
]
}