@milaboratories/miplots4 1.0.42
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 +17 -0
- package/dist/index.d.ts +5523 -0
- package/dist/index.js +8734 -0
- package/package.json +88 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# MiPlots 4 #
|
|
2
|
+
|
|
3
|
+
* TODO add description
|
|
4
|
+
|
|
5
|
+
### Install ###
|
|
6
|
+
|
|
7
|
+
`npm i @milaboratories/miplots4 --save`
|
|
8
|
+
|
|
9
|
+
### Build and install locally ###
|
|
10
|
+
|
|
11
|
+
`npm run build && npm pack`
|
|
12
|
+
|
|
13
|
+
This command will generate a .tgz file at the directory's root like this ./milaboratories-miplots4-1.0.0.tgz
|
|
14
|
+
|
|
15
|
+
In the directory of the project that you want to test the MiPlots package, just run an `npm install` with the path to this .tgz file:
|
|
16
|
+
|
|
17
|
+
`npm i /abs/path/to/the/file/milaboratory-miplots4-1.0.0.tgz --save`
|