1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00
This commit is contained in:
yosmoc
2016-08-25 21:33:07 +02:00
parent e685c4302d
commit 2e5945642d
3 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ You must use Node LTS v4.\*.\* to build Boostnote.
## Development
We use Webpack HMR to develope Boostnote.
We use Webpack HMR to develop Boostnote.
You can use this command to use our configuration
```
@@ -21,14 +21,14 @@ Then, we have to run the app.
```
npm run hot
```
> Actually the app can be start with `npm start@. However, the app will use the compiled scpript.
> Actually the app can be start with `npm start@. However, the app will use the compiled script.
By this, webpack will watch the code changes and apply it automatically.
> ### Notice
> There are some cases you have to refresh app yourself.
> 1. When editing constructor method of a component
> 2. When adding a new css class(same to 1: CSS classs is re-written by each component. This process occurs at Constructor method.)
> 2. When adding a new css class(same to 1: CSS class is re-written by each component. This process occurs at Constructor method.)
## Deploy
@@ -41,6 +41,6 @@ So, we prepare a script which just make an excutable file.
grunt pre-build
```
You will find the excutable from `dist`. In this case, auto updater won't work because the app isn't signed.
You will find the executable from `dist`. In this case, auto updater won't work because the app isn't signed.
If you are necessary, you can do codesign or authenticode by this excutable.