@alkimi.org/ui-kit 0.1.3 → 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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -260,11 +260,12 @@ npm run type-check
260
260
 
261
261
  ## Publishing to npm
262
262
 
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
265
- 3. Build the library: `npm run build`
266
- 4. Login to npm: `npm login`
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`
267
+
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.
268
269
 
269
270
  ## License
270
271
 
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.5",
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",