@finmars/ui 1.0.4 → 1.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 +17 -7
- package/dist/finmars-ui.css +5 -1
- package/dist/finmars-ui.es.js +8546 -60
- package/dist/finmars-ui.umd.js +5 -1
- package/package.json +40 -15
package/README.md
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
# Finmars UI
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
##
|
|
4
|
+
## Setup
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Make sure to install the dependencies:
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npm install
|
|
10
|
+
```
|
|
9
11
|
|
|
10
|
-
|
|
12
|
+
## Development Server
|
|
11
13
|
|
|
12
|
-
|
|
14
|
+
Start the development server on http://localhost:3000
|
|
13
15
|
|
|
14
|
-
|
|
16
|
+
Run command:
|
|
15
17
|
|
|
16
|
-
`npm
|
|
18
|
+
`npm run dev`
|
|
19
|
+
|
|
20
|
+
## Build for production
|
|
21
|
+
|
|
22
|
+
To see what a build for production looks like
|
|
23
|
+
|
|
24
|
+
Rum command:
|
|
25
|
+
|
|
26
|
+
`npm run build`
|