@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 CHANGED
@@ -1,16 +1,26 @@
1
1
  # Finmars UI
2
2
 
3
3
 
4
- ## Table of Contents
4
+ ## Setup
5
5
 
6
- To build
6
+ Make sure to install the dependencies:
7
7
 
8
- `npm run build`
8
+ ```bash
9
+ npm install
10
+ ```
9
11
 
10
- To patch (when publish new version) - run after you commit and push changes
12
+ ## Development Server
11
13
 
12
- `npm version patch`
14
+ Start the development server on http://localhost:3000
13
15
 
14
- To publish
16
+ Run command:
15
17
 
16
- `npm publish`
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`