Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 715 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (26 loc) · 715 Bytes

Contributing

This project uses Bun. Make sure you have it installed.

Install the dependencies

$ bun install

Building the project

$ bun run prepare

Linking the project as global CLI

$ bun link

Running the project

In development, you can run the project with:

$ bun <path_to_project>/src/cli.ts

or from global installation, if you have linked the project:

$ bun --bun run cali

Additional flag --bun is required due to shebang line in the CLI pointing to Node.

Note

In case of running from global installation, you should start bun in watch mode, so that dist files are automatically up to date with your latest changes.