design-system-silkhaus 0.0.88 → 1.1.0-beta.slider-input.2

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
@@ -18,9 +18,10 @@ This is a starter template for creating React component libraries using Vite. It
18
18
  ## Get Started
19
19
 
20
20
  1. Clone this repository
21
- 2. Install dependencies using `npm i` (or `pnpm i` if you like)
22
- 3. To see storybook locally use `npm run dev` (or `pnpm dev` if you like)
23
- 4. To see storybook locally use `npm run dev` (or `pnpm dev` if you like)
21
+ 2. We use pnpm as our package manager. Install pnpm. Refer https://pnpm.io/installation
22
+ 3. Run `nvm install` to install the correct node version automatically from the `.nvmrc` file
23
+ 3. Install dependencies using `pnpm i`
24
+ 4. To see storybook locally use `pnpm dev`
24
25
 
25
26
  ## Development
26
27
 
@@ -45,15 +46,19 @@ This is a starter template for creating React component libraries using Vite. It
45
46
 
46
47
  ## Publish Dev
47
48
 
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
49
+ - First make sure you have installed the packages by running `pnpm i`
50
+ - Make sure you have committed all your changes (including `pnpm-lock.yaml`)
51
+ - `pnpm build:lib` - Build the lib into `dist` folder. This has to done before publishing, so that you publish the latest `dist`
52
+ - `pnpm version <version>-beta.x` - run this command to update the package version for testing
53
+ - `npm publish --access=public --tag beta` - To publish lib with beta tag for testing
51
54
 
52
55
  ## Publish Prod
53
56
 
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
57
+ - First make sure you have installed the packages by running `pnpm i`
58
+ - Make sure you have committed all your changes (including `pnpm-lock.yaml`)
59
+ - `pnpm build:lib` - Build the lib into `dist` folder. This has to done before publishing, so that you publish the latest `dist`
60
+ - `pnpm version <version>` - run this command to update package version for testing
61
+ - `npm publish --access=public --tag latest` - To publish lib with latest tag for production release
57
62
 
58
63
  ## License
59
64