# datagrid-js

[![Build Status](https://travis-ci.com/Pod-Point/datagrid-js.svg?token=4tHGKTgmpZKPdqrVu8uB&branch=master)](https://travis-ci.com/Pod-Point/datagrid-js)

## Installation

```bash
npm install --save @pod-point/datagrid-js
```

## Usage

```javascript
import DataGrid from 'datagrid-js';

const dataGrid = new DataGrid();
```

## Development

```bash
webpack
```

## Releases
This package is distributed via NPM.

Before merging your PR following code review & QA, ensure the assets have been built for production
`npm run build`

Then run the following commands to update the package version and create a new release/tag.

```
npm version <major|minor|patch|prerelease>
git push && push --tags
npm publish
```

If you forget to do this before merging, this is not a problem, just create a new branch from master and run these same commands, remembering to open and merge a PR for this branch so that the package.json file is updated.
