Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
],
"author": "Junyoung Choi <fluke8259@gmail.com>",
"license": "GPL-3.0",
"engines": {
"node": "16.x"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
Expand Down
11 changes: 10 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ Standalone app separated from Boost Note for better local space support. See [Ro
- `electron` : Compiled electron resources from `npm run build:electron` script. You can run it by `npm start` script. The resources are for packaging the electron app.
- `src` : Source code.

### Prerequisites

- Node.js 16.x — newer versions are not supported

```sh
nvm install 16
nvm use 16
```

### Build

Please copy `.env.default` file and create a file named `.env` in the root of the project directory, or the build will fail.
Expand All @@ -49,7 +58,7 @@ Please copy `.env.default` file and create a file named `.env` in the root of th

```sh
# Install dependencies
npm i
npm install

# Run webpack
npm run dev:webpack
Expand Down
Loading