@alkimi.org/ui-kit 0.1.4 → 0.1.5
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 +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -260,11 +260,10 @@ npm run type-check
|
|
|
260
260
|
|
|
261
261
|
## Publishing to npm
|
|
262
262
|
|
|
263
|
-
1. Update the
|
|
264
|
-
2.
|
|
265
|
-
3.
|
|
266
|
-
4.
|
|
267
|
-
5. Publish: `npm publish --access public`
|
|
263
|
+
1. Update the version number in [package.json](package.json) (e.g., from `0.1.3` to `0.1.4`)
|
|
264
|
+
2. Build the library: `npm run build`
|
|
265
|
+
3. Login to npm (if not already logged in): `npm login`
|
|
266
|
+
4. Publish: `npm publish`
|
|
268
267
|
|
|
269
268
|
**Note:** Make sure to bump the version in [package.json](package.json) before publishing any changes to avoid conflicts with existing versions on npm.
|
|
270
269
|
|