design-system-silkhaus 0.0.80 → 0.0.83-beta.0

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 CHANGED
@@ -43,11 +43,17 @@ This is a starter template for creating React component libraries using Vite. It
43
43
  - `lint`: Runs ESLint.
44
44
  - `format`: Formats your code with Prettier.
45
45
 
46
- ## Publish
46
+ ## Publish Dev
47
47
 
48
- Check the version is updated
49
- `npm run build:lib` - Build the lib
50
- `npm publish --access=public` - To publish lib
48
+ - `npm run build:lib` - Build the lib, this has to done before publishing
49
+ - `npm version <version>.beta.x` - run this command to update package version for testing
50
+ - `npm publish --access=public --tag beta` - To publish lib with beta tag
51
+
52
+ ## Publish Prod
53
+
54
+ - `npm run build:lib` - Build the lib, this has to done before publishing
55
+ - - `npm version <version>` - run this command to update package version for testing
56
+ - `npm publish --access=public --tag latest` - To publish lib with latest tag
51
57
 
52
58
  ## License
53
59