Skip to content

Commit

Permalink
fix README typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegris committed May 30, 2021
1 parent 3fb6569 commit aa691d9
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Maybe you only want to execute the application in the browser with hot reload? J
## Included Commands

|Command|Description|
|--|--|
| ---- | ---- |
|`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:prod`| Build the app with Angular aot. Your built files are in the /dist folder. |
Expand All @@ -94,7 +94,18 @@ Maybe you only want to execute the application in the browser with hot reload? J

YES! You can do it! Just by importing your library in npm dependencies section (not **devDependencies**) with `npm install --save`. It will be loaded by electron during build phase and added to your final package. Then use your library by importing it in `main.ts` file. Quite simple, isn't it?

## Install Angular Material
## E2E Testing

E2E Test scripts can be found in `e2e` folder.

|Command|Description|
| ---- | ---- |
|`npm run e2e`| Execute end to end tests |

Note: To make it work behind a proxy, you can add this proxy exception in your terminal
`export {no_proxy,NO_PROXY}="127.0.0.1,localhost"`

## How to install Angular Material

First add Angular Material using `ng add` command:

Expand Down Expand Up @@ -130,17 +141,6 @@ Finally from VsCode press **Ctrl+Shift+D** and select **Application Debug** and
Please note that Hot reload is only available in Renderer process.
## E2E Testing
E2E Test scripts can be found in `e2e` folder.
|Command|Description|
|--|--|
|`npm run e2e`| Execute end to end tests |
Note: To make it work behind a proxy, you can add this proxy exception in your terminal
`export {no_proxy,NO_PROXY}="127.0.0.1,localhost"`
## Branch & Packages version
- Angular 4 & Electron 1 : Branch [angular4](https://github.com/maximegris/angular-electron/tree/angular4)
Expand Down

0 comments on commit aa691d9

Please sign in to comment.