Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.68 KB

CONTRIBUTE.md

File metadata and controls

54 lines (39 loc) · 1.68 KB

Contributing - html-duration-picker

Contributions and suggestions are very welcome and wanted. I try to respond to pull requests within 48 hours. To contribute simply

  1. Fork the repository.

    How do I do this?

  2. Clone your forked repository and setup development environment

    git clone https://github.com/bakhtawarshah/nice-invoice.git
    cd nice-invoice.js
    

create index.js and follow from 2nd step using this node index.js ``` Resources: * https://git-scm.com/book/en/v2/Getting-Started-Installing-Git * https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/

  1. Make the fix or add feature to app.js

    To preview locally on a development server, run

    node index.js
    
  2. Sync your fork to make sure you have the latest changes.

    # Fetch upstream master and merge with your repo's master branch
    git fetch upstream
    git checkout master
    git merge upstream/master
    
    # If there were any new commits, rebase your development branch
    git checkout newfeature
    git rebase master
    

    Resources:

  3. Create a pull request.

    Resources:

  4. Wait for the maintainer to respond.

Thank you for your awesome contribution 😃