@dpa-id-components/dpa-shared-components 0.1.0 → 0.1.1
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 +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ npm run storybook
|
|
|
67
67
|
|
|
68
68
|
A deployed version of the storybook can be found [here](https://dpa-gmbh.github.io/dpa-shared-components/).
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
## Tailwind
|
|
71
71
|
|
|
72
72
|
The tailwind config is located at `./src/tailwind/tailwind.config.cjs`.
|
|
73
73
|
Please be aware that used plugins must be listed in the dependencies or the projects using the components have to
|
|
@@ -83,4 +83,14 @@ duplicated since Storybook can't handle the vite config plugins).
|
|
|
83
83
|
Custom optimizations right now are:
|
|
84
84
|
|
|
85
85
|
- removing dimensions (width/height attributes)
|
|
86
|
-
- removing fills (to enable styling)
|
|
86
|
+
- removing fills (to enable styling)
|
|
87
|
+
|
|
88
|
+
## Releasing
|
|
89
|
+
|
|
90
|
+
To publish a new release just run one of the following (depending on the kind of version bump you want to do):
|
|
91
|
+
|
|
92
|
+
```shell
|
|
93
|
+
npm run release:patch
|
|
94
|
+
npm run release:minor
|
|
95
|
+
npm run release:major
|
|
96
|
+
```
|