File tree Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Original file line number Diff line number Diff line change
1
+ repos :
2
+ - repo : https://github.com/pre-commit/pre-commit-hooks
3
+ rev : v4.5.0
4
+ hooks :
5
+ - id : end-of-file-fixer
6
+ - id : trailing-whitespace
7
+ - id : check-json
8
+ - id : check-merge-conflict
9
+ - repo : https://github.com/pre-commit/mirrors-prettier
10
+ rev : v3.1.0
11
+ hooks :
12
+ - id : prettier
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ semi : true ,
3
+ singleQuote : false ,
4
+ tabWidth : 2 ,
5
+ useTabs : false ,
6
+ } ;
Original file line number Diff line number Diff line change
1
+ Build process is not finalized yet, currently only Appimage is built for linux systems.
1
2
2
- Build process is not finalized yet, but you can run the full app with extension support enabled .
3
+ It is recommended to build from source for now, see ` DEVELOPING.md ` first for basic environment setup .
3
4
4
- See ` DEVELOPING.md ` first for basic environment setup.
5
-
6
- The sources for the two kinds of builds are in ` applications/ ` , with Electron builds being packaged by electron-builder.
5
+ The sources for the two kinds of builds are ` browser-app ` and ` electron-app ` , with Electron builds being packaged by electron-builder.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Start watching either type of build you're working with:
26
26
# or
27
27
yarn watch:electron
28
28
29
- > right now there seems to be a problem with the 'watch' automatic recompilation, for now just use ` build:* ` instead.
29
+ > right now there seems to be a problem with the 'watch' automatic recompilation, for now just use ` build:* ` or ` start:* ` instead.
30
30
31
31
To build without watching, use ` build:browser ` or ` build:electron ` instead.
32
32
You can’t perform that action at this time.
0 commit comments