@inb/oeb_visualizations 0.0.8-beta → 0.1.0
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 +19 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -14,7 +14,25 @@ To install the package run:
|
|
|
14
14
|
```bash
|
|
15
15
|
npm install @inb/oeb_visualizations
|
|
16
16
|
```
|
|
17
|
+
## How to contribute
|
|
18
|
+
|
|
19
|
+
If you want to contribute to this project, please read the [contributing guidelines](/CONTRIBUTING.md) first.
|
|
17
20
|
|
|
18
21
|
## Development
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
:construction: This section is under construction. :construction:
|
|
24
|
+
|
|
25
|
+
### How to add a new component.
|
|
26
|
+
|
|
27
|
+
- Files are relative to the package.
|
|
28
|
+
- How the built is configured.
|
|
29
|
+
- How to push to npm.
|
|
30
|
+
- How to install package locally for development.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Documentation:
|
|
34
|
+
- How documentation is organised.
|
|
35
|
+
- How to serve documentation locally.
|
|
36
|
+
- GitHub Actions in place. When do they run?
|
|
37
|
+
|
|
38
|
+
## Publishing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inb/oeb_visualizations",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Collection of Vue components for data visualization in OpenEBench.",
|
|
5
5
|
"author": "evamart",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
"dist/*"
|
|
25
25
|
],
|
|
26
|
-
|
|
27
26
|
"vetur": {
|
|
28
27
|
"tags": "tags.json",
|
|
29
28
|
"attributes": "attributes.json"
|