reporting-engine 0.0.6
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 +31 -0
- package/dist/index.es.js +157601 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# reporting-engine
|
|
2
|
+
|
|
3
|
+
Pull-request reporting engine based on react.js
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- ES6 syntax, managed with Prettier + Eslint and Stylelint
|
|
8
|
+
- Unit testing via Jest
|
|
9
|
+
- React 17
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
yarn add reporting-engine
|
|
15
|
+
// or
|
|
16
|
+
npm i reporting-engine
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Requirements
|
|
20
|
+
|
|
21
|
+
- React 17
|
|
22
|
+
- Styled Components
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Usage
|
|
26
|
+
|
|
27
|
+
```js
|
|
28
|
+
import { ReportingEngine } from 'reporting-engine';
|
|
29
|
+
|
|
30
|
+
const App = () => <div><ReportingEngine key={"YOUR_AUTH_KEY"} /></div>
|
|
31
|
+
```
|