Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

63 lines (41 loc) · 1.14 KB

Contributing

IMPORTANT: This project only accepts contributions based on lucide icons. Pull requests containing custom icons or icons from other icon packs will be closed.

We welcome contributions to our project! Please follow these steps to contribute:

  1. Fork the repository on GitHub.

  2. Clone your forked repository to your local machine:

    git clone https://github.com/your-username/icons.git
    
  3. Navigate to the project directory:

    cd icons
    
  4. Create a new branch for your feature or bug fix:

    git checkout -b your-branch-name
    
  5. Install the project dependencies:

    yarn install
    
  6. Make your changes to the codebase.

  7. Build the project:

    yarn build
    
  8. Test the application to ensure your changes work as expected:

    yarn lint
    yarn build
    yarn gen-cli
    
  9. Commit your changes:

    git commit -m "Your commit message"
    
  10. Push your changes to your fork:

    git push origin your-branch-name
    
  11. Open a pull request on the original repository.

Thank you for contributing to our project!