@xola/ui-kit 2.1.0 → 2.1.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 +20 -0
- package/build/ui-kit.mjs +1451 -1444
- package/build/ui-kit.umd.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,3 +142,23 @@ Or:
|
|
|
142
142
|
```bash
|
|
143
143
|
$ npm install some-package --legacy-peer-deps
|
|
144
144
|
```
|
|
145
|
+
|
|
146
|
+
## Publishing the Package
|
|
147
|
+
|
|
148
|
+
Install [np](https://github.com/sindresorhus/np#readme) which will help you publish the package
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
npm -g install np
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Once you're ready, run this command to publish your package
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
npm run build
|
|
158
|
+
np <your-new-version> --tag=latest --yolo
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Then make sure to push all the tags upstream to `xola/ui-kit` repo:
|
|
162
|
+
```
|
|
163
|
+
git push <upstream-remote> master --tags
|
|
164
|
+
```
|