@cryptofi/core-ui 0.12.1 → 0.13.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 +6 -2
- package/dist/index.js +12 -5
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +7 -6
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -71,9 +71,9 @@ const SomeComponent = () => {
|
|
|
71
71
|
};
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
## Using
|
|
74
|
+
## Using Unpublished Changes
|
|
75
75
|
|
|
76
|
-
To use
|
|
76
|
+
To use unpublished changes to this package in another local application, follow these steps:
|
|
77
77
|
|
|
78
78
|
1. Run `yarn publish:local` to build and publish locally.
|
|
79
79
|
2. From the root of the other app run `yarn dlx yalc link @cryptofi/core-ui` to install this package from the local registry.
|
|
@@ -88,3 +88,7 @@ This project uses [Rollup](https://rollupjs.org/) to build an optimized JavaScri
|
|
|
88
88
|
Vite is used in conjunction with Storybook for local development.
|
|
89
89
|
|
|
90
90
|
Based on the following Vite / React template: https://github.com/The24thDS/vite-reactts18-chakra-jest-husky
|
|
91
|
+
|
|
92
|
+
## Publishing to NPM
|
|
93
|
+
|
|
94
|
+
Refer to PUBLISH.md for more info.
|