mirror of
https://github.com/amiayweb/Hytale-F2P.git
synced 2026-02-26 12:11:45 -03:00
40 lines
434 B
Markdown
40 lines
434 B
Markdown
# Build Instructions
|
|
|
|
## Prerequisites
|
|
|
|
Install dependencies:
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
## Building
|
|
|
|
### Build for current platform:
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
### Build for specific platform:
|
|
|
|
**Windows:**
|
|
```bash
|
|
npm run build:win
|
|
```
|
|
|
|
**Linux:**
|
|
```bash
|
|
npm run build:linux
|
|
```
|
|
|
|
**macOS:**
|
|
```bash
|
|
npm run build:mac
|
|
```
|
|
|
|
### Build for all platforms:
|
|
```bash
|
|
npm run build:all
|
|
```
|
|
|
|
Built executables will be in the `dist/` directory
|