Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.24 KB

CONTRIBUTING.md

File metadata and controls

48 lines (29 loc) · 1.24 KB

Contributing to Grafana / Sign Plugin

We are always grateful to receive contributions!
The following guidelines help you on how to start with the codebase and how to submit your work.

Installation

Prerequisites

You need to have npm installed.

Installing

git clone [email protected]:grafana/plugin-tools.git
cd plugin-tools
npm install

Overview

Technologies

  • minimist - used for parsing argument options

Folder structure

Work in progress.

Development

There are a collection of commands to assist with developing sign-plugin. Please read the main contributing guide before contributing any code changes to the project.

Commmands

Below are the main commands used for developing sign-plugin. They can be run by either npx nx run @grafana/sign-plugin:<name_of_command>, npm run <name_of_command> -w @grafana/sign-plugin or navigating to packages/sign-plugin and running the command directly as detailed below.

npm build # used to build @grafana/sign-plugin
npm dev # watches for changes to files and rebuilds @grafana/sign-plugin automatically

Conventions

Work in progress.