[Bumped Version] 8.0.2
This commit is contained in:
@@ -1,5 +1,12 @@
|
|||||||
|
## <small>8.0.2 (2020-08-12)</small>
|
||||||
|
|
||||||
|
* fix/ require error with nodeIntegration = false ([61c5c6b](https://github.com/maximegris/angular-electron/commit/61c5c6b))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## <small>8.0.1 (2020-08-12)</small>
|
## <small>8.0.1 (2020-08-12)</small>
|
||||||
|
|
||||||
|
* [Bumped Version] 8.0.1 ([e032729](https://github.com/maximegris/angular-electron/commit/e032729))
|
||||||
* fix/ eslint on main.ts file ([4b17ab6](https://github.com/maximegris/angular-electron/commit/4b17ab6))
|
* fix/ eslint on main.ts file ([4b17ab6](https://github.com/maximegris/angular-electron/commit/4b17ab6))
|
||||||
* misc/ remove warinng npm start ( tsconfg.app include key) ([8a73b4a](https://github.com/maximegris/angular-electron/commit/8a73b4a))
|
* misc/ remove warinng npm start ( tsconfg.app include key) ([8a73b4a](https://github.com/maximegris/angular-electron/commit/8a73b4a))
|
||||||
* misc/ upgrade Angular ([a1ef40d](https://github.com/maximegris/angular-electron/commit/a1ef40d))
|
* misc/ upgrade Angular ([a1ef40d](https://github.com/maximegris/angular-electron/commit/a1ef40d))
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ You can disable "Developer Tools" by commenting `win.webContents.openDevTools();
|
|||||||
|
|
||||||
|Command|Description|
|
|Command|Description|
|
||||||
|--|--|
|
|--|--|
|
||||||
|`npm run ng:serve:web`| Execute the app in the browser |
|
|`npm run ng:serve`| Execute the app in the browser |
|
||||||
|`npm run build`| Build the app. Your built files are in the /dist folder. |
|
|`npm run build`| Build the app. Your built files are in the /dist folder. |
|
||||||
|`npm run build:prod`| Build the app with Angular aot. Your built files are in the /dist folder. |
|
|`npm run build:prod`| Build the app with Angular aot. Your built files are in the /dist folder. |
|
||||||
|`npm run electron:local`| Builds your application and start electron
|
|`npm run electron:local`| Builds your application and start electron
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "angular-electron",
|
"name": "angular-electron",
|
||||||
"version": "8.0.1",
|
"version": "8.0.2",
|
||||||
"description": "Angular 10 with Electron (Typescript + SASS + Hot Reload)",
|
"description": "Angular 10 with Electron (Typescript + SASS + Hot Reload)",
|
||||||
"homepage": "https://github.com/maximegris/angular-electron",
|
"homepage": "https://github.com/maximegris/angular-electron",
|
||||||
"author": {
|
"author": {
|
||||||
@@ -21,12 +21,11 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "electron-builder install-app-deps",
|
"postinstall": "electron-builder install-app-deps",
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "npm-run-all -p electron:serve ng:serve:web",
|
"start": "npm-run-all -p electron:serve ng:serve",
|
||||||
"build": "npm run electron:serve-tsc && ng build --base-href ./",
|
"build": "npm run electron:serve-tsc && ng build --base-href ./",
|
||||||
"build:dev": "npm run build -- -c dev",
|
"build:dev": "npm run build -- -c dev",
|
||||||
"build:prod": "npm run build -- -c production",
|
"build:prod": "npm run build -- -c production",
|
||||||
"ng:serve": "ng serve",
|
"ng:serve": "ng serve -c web -o",
|
||||||
"ng:serve:web": "ng serve -c web -o",
|
|
||||||
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
|
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
|
||||||
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
|
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
|
||||||
"electron:local": "npm run build:prod && npx electron .",
|
"electron:local": "npm run build:prod && npx electron .",
|
||||||
|
|||||||
Reference in New Issue
Block a user