@finmars/ui 1.0.0 → 1.0.3

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 +1,16 @@
1
- # Finmars UI
1
+ # Finmars UI
2
+
3
+
4
+ ## Table of Contents
5
+
6
+ To build
7
+
8
+ `npm run build`
9
+
10
+ To patch (when publish new version) - run after you commit and push changes
11
+
12
+ `npm version patch`
13
+
14
+ To publish
15
+
16
+ `npm publish`
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@finmars/ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
- "main": "index.js",
6
5
  "scripts": {
7
6
  "test": "echo \"Error: no test specified\" && exit 1",
8
7
  "storybook": "storybook dev -p 6006",
@@ -12,8 +11,11 @@
12
11
  "files": [
13
12
  "dist/",
14
13
  "LICENSE.md",
15
- "README.md"
14
+ "README.md",
15
+ "package.json"
16
16
  ],
17
+ "main": "dist/finmars-ui.umd.js",
18
+ "module": "dist/finmars-ui.es.js",
17
19
  "keywords": [],
18
20
  "author": "Sergei Zhitenev",
19
21
  "license": "SEE LICENSE IN LICENSE.md",
package/index.js DELETED
@@ -1,3 +0,0 @@
1
- import FinmarsButton from './src/components/finmars-button/FinmarsButton.vue';
2
-
3
- export { FinmarsButton };
File without changes