Skip to content

Latest commit

 

History

History
161 lines (123 loc) · 5.68 KB

CONTRIBUTING.md

File metadata and controls

161 lines (123 loc) · 5.68 KB

Contributing to knopf.css

Please review this document in order to make the contribution process easy and effective for everyone involved.

Following these guidelines helps to communicate that you respect the time of the developers managing and developing this project. In return, we will reciprocate that respect in addressing your issues, patches, and features.

Using the issue tracker

The issue tracker is the preferred channel for bug reports, feature requests and pull requests, but please respect the following restrictions:

  • Please do not use the issue tracker for personal support requests.
  • Please do not derail or troll issues. Keep the discussion on topic and respect the opinions of others.

Bug reports

A bug is a demonstrable problem caused by the code in this repository.

  1. Use the GitHub issue search to see if the issue has already been reported.

  2. Check if the issue has been fixed by trying to reproduce it using the latest master branch in the repository.

  3. Isolate the problem to create a live example of a reduced test case.

A good bug report shouldn’t leave others needing to chase you up for more information. Please be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What browser(s) and OS experience the problem? What would you expect to be the outcome? All these details will help people to fix any potential bugs.

Example:

Short and descriptive example bug report title

A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.

  1. This is the first step
  2. This is the second step
  3. Further steps, etc.

<url> - a link to the reduced test case

Any other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).

Feature requests

Feature requests are welcome. Take a moment to find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Please provide as much detail and context as possible.

Pull requests

Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.

Please ask first before embarking on any significant work, otherwise you risk spending a lot of time working on something that the project’s developers might not want to merge into the project.

Please adhere to the coding conventions used throughout a project (whitespace, accurate comments, etc.) and any other requirements (such as test coverage).

Follow this process if you’d like your work considered for inclusion in the project:

  1. To begin: fork this project, clone your fork, and add our upstream.

    # Clone your fork of the repo into the current directory
    git clone git@github.com:YOUR_USER/knopf.css.git
    
    # Navigate to the newly cloned directory
    cd knopf.css
    
    # Assign the original repo to a remote called "upstream"
    git remote add upstream git@github.com:team-video/knopf.css.git
    
    # Install the tools necessary for testing
    npm install
  2. Create a branch for your feature or fix:

    # Move into a new branch for your feature
    git checkout -b feature/thing
    # Move into a new branch for your fix
    git checkout -b fix/something
  3. If your code follows our practices, then push your feature branch:

    # Test current code
    npm test
    # Push the branch for your new feature
    git push origin feature/thing
    # Or, push the branch for your update
    git push origin update/something

    Be sure to add a test to the test.html file if appropriate, and test your change in all supported browsers.

Now open a pull request with a clear title and description. Remember, by submitting a patch, you agree to allow the project owner to license your work under the same license as that used by the project.

Maintainers

If you have commit access, please follow this process for merging patches and cutting new releases.

Accepting patches

  1. Check that a patch is within the scope and philosophy of the project.
  2. Check that a patch has any necessary tests and a proper, descriptive commit message.
  3. Test the patch locally.
  4. Use GitHub’s merge button with caution or apply the patch locally, squashing any commits.

Releasing a new version

  1. Include all new functional changes in CHANGELOG.md.
  2. Create an annotated tag for the version: git tag -m "0.0.0" 0.0.0.
  3. Push the changes and tags to GitHub: git push --tags origin master
  4. Update the gh-pages branch,
    1. Copy the latest knopf.css and test.html from the master branch into the root directory, the latest directory, and a new directory named after the new version: 0.0.0.
    2. Update the knopf.css version and supported browsers in index.html.

Semver strategy

Semver is a widely accepted method for deciding how version numbers are incremented in a project. Versions are written as MAJOR.MINOR.PATCH.