Skip to content

Latest commit

 

History

History
87 lines (54 loc) · 1.22 KB

File metadata and controls

87 lines (54 loc) · 1.22 KB

Contributing to nero-env

Thanks for your interest in contributing to nero-env!

How to contribute

  1. Fork the repo
  2. Create a branch (use a descriptive name)
  3. Make your changes
  4. Open a pull request

Small, focused PRs are preferred.

Picking issues

Issues labeled good first issue or help wanted are open for anyone to work on. If an issue is unassigned, feel free to take it.

Local Development Setup

Prerequisites

  1. Fork the repo

  2. Clone your fork

    git clone https://github.com/<username>/nero-env.git
    
  3. Move to the project root directory

    cd nero-env
  4. Install dependencies

    pnpm install
  5. Build the project

    pnpm build

Running the CLI locally (using npm link)

To test nero-env as a global command during development:

  1. Link the package

    npm link
  2. Run the CLI

    nero-env
  3. After making changes

    pnpm build

The linked command will automatically use the updated build.


Unlinking (cleanup)

When you’re done:

npm unlink