@reason-native/cli
Version:
[](https://dev.azure.com/reason-native/reason-native/_build/latest?definitionId=1?branchName=master) ![Supported Plat
47 lines (37 loc) • 696 B
Markdown
# @reason-native/pastel
**Contains the following libraries and executables:**
```
@reason-native/pastel@0.0.0
│
├─test/
│ name: TestPastel.exe
│ main: TestPastel
│ require: pastel.lib
│
├─library/
│ library name: pastel.lib
│ namespace: Pastel
│ require:
│
└─executable/
name: PastelApp.exe
main: PastelApp
require: pastel.lib
```
## Developing:
```
npm install -g esy
git clone <this-repo>
esy install
esy build
```
## Running Binary:
After building the project, you can run the main binary that is produced.
```
esy x PastelApp.exe
```
## Running Tests:
```
# Runs the "test" command in `package.json`.
esy test
```