mirror of
https://git.sanhost.net/sanasol/hytale-f2p
synced 2026-02-26 16:21:49 -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
|