Skip to content
This repository has been archived by the owner on May 2, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
85 lines (45 loc) · 1.82 KB

CONTRIBUTING.md

File metadata and controls

executable file
·
85 lines (45 loc) · 1.82 KB

Contributing

System Dependencies

Node

Install project dependencies

Code

  • Fork and clone the hex-to-rgb-jquery repo

Install project dependencies

npm install

This installs dependencies from package.json.

Running the module Locally

Run node src/cli.js

npm scripts

npm run build

This will:

  • lints files
  • clean the dist folder
  • concatenates files
  • runs the unit tests

npm run lint

This will:

  • run linters

npm test

This will:

  • run all of the mocha tests

Code guidelines

JS

hex-to-rgb-jquery utilizes ESLint to enforce JavaScript standards. Please see the .eslintrc.json file for ESLint config.

Checking coding style

Run npm run lint before committing to ensure your changes follow our coding standards.

Versioning

Please use the following commands to increment the package's version numbers EX: Assume current version is 0.0.1

npm version patch --no-git-tag-version

If you run this command the version will increase the patch number (ie 0.0.2)

npm version minor --no-git-tag-version

If you run this command the version will increase the minor number (ie 0.1.0)

npm version major --no-git-tag-version

If you run this command the version will increase the major number (ie 1.0.0)

EditorConfig

EditorConfig helps maintain consistent file formatting between different editors and developers. Please install the plugin for you editor of choice. Please see the .editorconfig file at the root of this repo to see what settings are enforced.

License

Contributions to hex-to-rgb-jquery are subject to the MIT License.