Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1016 Bytes

contributing.md

File metadata and controls

29 lines (20 loc) · 1016 Bytes

Contributing

Development

Install all the project dependencies with:

npm ci

Start the local development server with:

npm start

The plugin will be served from http://localhost:3000/. Insert this URL as the plugin Entry point URL.

Publishing

Before publishing this plugin, make sure:

  • you've properly described any configuration parameters in the readme;
  • you've updated the changelog with relevant information (see steps below);
  • you've properly compiled this project's package.json following the official rules.

When everything's ready:

  1. Update changelog.md with relevant changes and stage with git add.
  2. Run npm version --force with the appropiate version bump to include the changelog changes in the same commit.
  3. This should automatically push the commit and new version tag to trigger publishing from CI.