@alkimi.org/ui-kit 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -261,11 +261,13 @@ npm run type-check
261
261
  ## Publishing to npm
262
262
 
263
263
  1. Update the package name in [package.json](package.json) to the npm scope (e.g., `@alkimi.org/ui-kit`)
264
- 2. Update the version number
264
+ 2. Update the version number in [package.json](package.json) (e.g., from `0.1.2` to `0.1.3`)
265
265
  3. Build the library: `npm run build`
266
266
  4. Login to npm: `npm login`
267
267
  5. Publish: `npm publish --access public`
268
268
 
269
+ **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
271
  ## License
270
272
 
271
273
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alkimi.org/ui-kit",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A React component library built with shadcn/ui and Tailwind CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",