design-system-silkhaus 2.15.1 → 2.16.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
@@ -30,21 +30,23 @@
30
30
  - `format:fix`: Fixes all prettier formatting issues
31
31
  - `knip`: Checks for unsused dependencies and exports.
32
32
 
33
- ## Publish Dev
33
+ ## Publish Beta version for testing
34
34
 
35
35
  - First make sure you have installed the packages by running `pnpm i`
36
36
  - Make sure you have committed all your changes (including `pnpm-lock.yaml`)
37
37
  - `pnpm build:lib` - Build the lib into `dist` folder. This has to done before publishing, so that you publish the latest `dist`
38
- - `pnpm version <version>-beta.x` - run this command to update the package version for testing
38
+ - `pnpm version <version>-beta.x` - run this command to update the package version to be released for testing. Eg: `pnpm version 2.10.6-beta.3`
39
39
  - `npm publish --access=public --tag beta` - To publish lib with beta tag for testing
40
+ - `git push` - Push the updated version with release tag back to your branch
40
41
 
41
- ## Publish Prod
42
+ ## Publish Production version
42
43
 
43
44
  - First make sure you have installed the packages by running `pnpm i`
44
45
  - Make sure you have committed all your changes (including `pnpm-lock.yaml`)
45
46
  - `pnpm build:lib` - Build the lib into `dist` folder. This has to done before publishing, so that you publish the latest `dist`
46
- - `pnpm version <version>` - run this command to update package version for testing
47
+ - `pnpm version <version>` - run this command to update package version to be released for production. Eg: `pnpm version 2.10.6`
47
48
  - `npm publish --access=public --tag latest` - To publish lib with latest tag for production release
49
+ - `git push` - Push the updated version with release tag back to your branch
48
50
 
49
51
  ## License
50
52