Skip to content

Commit d52b03a

Browse files
committed
misc/ typo README
1 parent 39b0bca commit d52b03a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ With this sample, you can :
2424
- Run your app in a production environment
2525
- Package your app into an executable file for Linux, Windows & Mac
2626

27-
/!\ Angular 8.x CLI needs Node 10.9 or later to work.
27+
/!\ Angular 8.x CLI needs Node 10.9 or later to works correctly.
2828

2929
## Getting Started
3030

@@ -40,7 +40,7 @@ Install dependencies with npm :
4040
npm install
4141
```
4242

43-
There is an issue with `yarn` and `node_modules` that are only used in electron on the backend when the application is built by the packager. Please use `npm` as dependencies manager.
43+
There is an issue with `yarn` and `node_modules` when the application is built by the packager. Please use `npm` as dependencies manager.
4444

4545

4646
If you want to generate Angular components with Angular-cli , you **MUST** install `@angular/cli` in npm global context.
@@ -76,11 +76,11 @@ You can disable "Developer Tools" by commenting `win.webContents.openDevTools();
7676

7777
## You want to use a specific lib (like rxjs) in electron main thread ?
7878

79-
You can do this! Just by importing your library in npm dependencies (not devDependencies) with `npm install --save`. It will be loaded by electron during build phase and added to the final package. Then use your library by importing it in `main.ts` file. Easy no ?
79+
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 ?
8080

8181
## Browser mode
8282

83-
Maybe you want to execute the application in the browser with hot reload ? You can do it with `npm run ng:serve:web`.
83+
Maybe you want to execute the application in the browser with hot reload ? Just run `npm run ng:serve:web`.
8484
**Note that you can't use Electron or NodeJS native libraries in this case.** Please check `providers/electron.service.ts` to watch how conditional import of electron/Native libraries is done.
8585

8686
## Branch & Packages version

0 commit comments

Comments
 (0)