@cryptofi/core-ui 2.2.5 → 2.3.2
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 -6
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +17 -2
- package/package.json +45 -48
package/README.md
CHANGED
|
@@ -16,8 +16,8 @@ InvestiFi's library of React components and UI utilities.
|
|
|
16
16
|
|
|
17
17
|
## Getting Started
|
|
18
18
|
|
|
19
|
-
1. Run `
|
|
20
|
-
2. Run `
|
|
19
|
+
1. Run `pnpm install` to install dependencies.
|
|
20
|
+
2. Run `pnpm dev` to launch Storybook.
|
|
21
21
|
|
|
22
22
|
## Deployment Environments
|
|
23
23
|
|
|
@@ -72,7 +72,7 @@ Guidelines:
|
|
|
72
72
|
3. Run the the command below to (re)generate React components from SVG files located in the **/svg-icons** directory.
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
|
|
75
|
+
pnpm icons:gen
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
4. Check in the resulting changes
|
|
@@ -105,9 +105,9 @@ https://www.loom.com/share/c8326757734f424993f857bf7881b02e
|
|
|
105
105
|
|
|
106
106
|
To use unpublished changes to this package in another local application, follow these steps:
|
|
107
107
|
|
|
108
|
-
1. Run `
|
|
109
|
-
2. From the root of the other app run `
|
|
110
|
-
3. Re-run `
|
|
108
|
+
1. Run `pnpm publish:local` to build and publish locally.
|
|
109
|
+
2. From the root of the other app run `pnpm link:core-ui` to install this package from the local registry.
|
|
110
|
+
3. Re-run `pnpm publish:local` as needed to update consumers with the latest changes to this project.
|
|
111
111
|
|
|
112
112
|
See [yalc docs](https://github.com/wclr/yalc) for more info.
|
|
113
113
|
|