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 +14 -9
- package/dist/index.cjs +157 -74
- package/dist/index.d.ts +108 -59
- package/dist/index.js +16560 -12498
- package/dist/style.css +1 -1
- package/package.json +7 -5
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.
|
|
22
|
-
3.
|
|
23
|
-
|
|
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
|
-
-
|
|
49
|
-
-
|
|
50
|
-
- `
|
|
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
|
-
-
|
|
55
|
-
-
|
|
56
|
-
- `
|
|
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
|
|