Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.49 KB

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 1.49 KB

FullHuman has adopted the Contributor Covenant Code of Conduct for all of its project. Please read the text so that you understand how to conduct while contributing to this project.

Semantic Versioning

Purgecss use SemVer for versioning.

Sending a Pull Request

Before submitting a pull request, please make sure the following is done:

  1. Fork the repository and create your branch from main.
  2. If you've added code that should be tested, add tests!
  3. If you've changed APIs, update the documentation.
  4. Ensure the test suite passes (npm test).
  5. Make sure your code lints (npm run lint).

Development Workflow

After cloning Purgecss, run npm i && npm run bootstrap to fetch its dependencies. Then, you can run several commands:

  • npm run build will build cjs and es module of all PurgeCSS packages in their lib folder.
  • npm run lint checks the code style.
  • npm test runs the complete test suite.
  • npm test -- --watch runs an interactive test watcher.
  • npm test <pattern> runs tests with matching filenames.
  • npm run build creates the cjs and es module of all Purgecss packages in their lib folder.

Make sure that your pull request contains unit tests for any new functionality. This way we can ensure that we don't break your code in the future.

License

This project is licensed under the MIT License - see the LICENSE file for details.