mirror of
https://github.com/Eugeny/tabby
synced 2024-12-14 15:22:40 +00:00
use yarn in HACKING.md
This commit is contained in:
parent
bb86848cd3
commit
a969dc1ea4
1 changed files with 4 additions and 6 deletions
10
HACKING.md
10
HACKING.md
|
@ -10,27 +10,25 @@ First, install the dependencies:
|
||||||
|
|
||||||
```
|
```
|
||||||
# macOS/Linux:
|
# macOS/Linux:
|
||||||
npm install
|
yarn
|
||||||
./scripts/install-deps.js
|
|
||||||
./scripts/build-native.js
|
./scripts/build-native.js
|
||||||
|
|
||||||
# Windows:
|
# Windows:
|
||||||
npm -g install windows-build-tools
|
npm -g install windows-build-tools
|
||||||
npm install
|
yarn
|
||||||
node scripts\install-deps.js
|
|
||||||
node scripts\build-native.js
|
node scripts\build-native.js
|
||||||
```
|
```
|
||||||
|
|
||||||
Now, check if your build is working:
|
Now, check if your build is working:
|
||||||
|
|
||||||
```
|
```
|
||||||
npm run build
|
yarn run build
|
||||||
```
|
```
|
||||||
|
|
||||||
Start Terminus with
|
Start Terminus with
|
||||||
|
|
||||||
```
|
```
|
||||||
npm start
|
yarn start
|
||||||
```
|
```
|
||||||
|
|
||||||
# Project layout
|
# Project layout
|
||||||
|
|
Loading…
Reference in a new issue