Skip to content

Latest commit

Β 

History

History
53 lines (38 loc) Β· 1.29 KB

CONTRIBUTING.md

File metadata and controls

53 lines (38 loc) Β· 1.29 KB

Contributing to ink-divider

Thank you for considering contributing to ink-divider πŸ˜€! We welcome contributions from everyone. By participating in this project, you agree to abide by our Code of Conduct.

Setting Up the Development Environment

  1. Fork the Project
  2. Create a new branch for your changes:
    git checkout -b my-feature-branch
  3. Install the dependencies:
    bun install

Bun runtime

If you don't have Bun installed, you can install it using this command:

Windows

powershell -c "irm bun.sh/install.ps1 | iex"

Linux, macOS, Windows (WSL)

curl -fsSL bun.sh/install | bash

Running Tests and Building the Project

To run the tests, use the following command:

bun run test

To build the project, use the following command:

bun run build

Submitting Pull Requests

  1. Commit your Changes (git commit -m 'Add some AmazingFeature')
  2. Push your branch to your fork:
    git push origin my-feature-branch
  3. Open a Pull Request on GitHub and provide a description of your changes.