impact-ui 0.1.18 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,22 +1,37 @@
1
- # poc
1
+ # impact-ui
2
2
 
3
- > Made with create-react-library
3
+ > Impact Analytics UI library
4
4
 
5
- [![NPM](https://img.shields.io/npm/v/poc.svg)](https://www.npmjs.com/package/poc) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
5
+ [![NPM](https://img.shields.io/npm/v/impact-ui.svg)](https://www.npmjs.com/package/impact-ui) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
6
6
 
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npm install --save poc
10
+ npm install --save impact-ui
11
11
  ```
12
12
 
13
+ ## Start, Build and Publish
14
+
15
+ `npm run start // Start docs`
16
+
17
+ `npm run build:lib // Build lib`
18
+
19
+ ```
20
+ // Upgrade versin in package.json
21
+ npm login
22
+ npm publish
23
+ ```
24
+
25
+ ## Generate component
26
+
27
+ `npm run generate-component -- <component-name>`
28
+
13
29
  ## Usage
14
30
 
15
31
  ```jsx
16
32
  import React, { Component } from 'react'
17
33
 
18
- import MyComponent from 'poc'
19
- import 'poc/dist/index.css'
34
+ import MyComponent from 'impact-ui'
20
35
 
21
36
  class Example extends Component {
22
37
  render() {