# Development
We're using [parcel](https://parceljs.org/) to bundle our css.

## Minification
Our distributed css is not minified, you'll have to handle that within your project.

## Link dependency to project
```
$ cd ~/itp-css
$ npm link
$ cd ~/my-project
$ npm link @inthepocket/itp-css
```

## Unlink dependency
```
$ cd ~/my-project
$ npm uninstall --no-save @inthepocket/itp-css && npm install
$ cd ~/itp-css
$ npm uninstall
```

## Watch components
```
$ npm run build-components-watch
```

## Installation
```
$ npm install
```

### build
```
$ npm run build
```

### publish
```
$ npm version major | minor | patch
$ npm publish
```
