Skip to content

Latest commit

 

History

History
86 lines (61 loc) · 1.95 KB

CONTRIBUTING.md

File metadata and controls

86 lines (61 loc) · 1.95 KB

Contributing to Udacimak

Thank you for considering to contribute to Udacimak!

Submit Pull Request

Start with your own branch

  • Create a branch identifying the issue/feature you're working on:

    #ISSUE_NUMBER-DESCRIPTION
    

Example:

#1-issue-description

Set Up

Now you can start coding!

Note

If this error occur:

npm ERR! code ENOENT
npm ERR! syscall chmod
npm ERR! path C:\Users\User\AppData\Roaming\npm\node_modules\udacimak\lib\index.js
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, chmod 'C:\Users\User\AppData\Roaming\npm\node_modules\udacimak\lib\index.js'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

Run script build to fix the issue:

npm run-script build

Commit

Please commit with clear commit messages. Udacimak doesn't have a change log file for each version release. The commits are the way to read changes in a version, so clear and concise commit messages are important.

Coding Style and Tests

Make sure you run:

  • npm run link for Javascript style check
  • npm test and make sure all tests pass

Finish

License

By contributing, you agree that your contributions will be licensed under its MIT License.