@o2project/design-system 1.5.2 → 1.5.3
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/CHANGELOG.md +11 -0
- package/README.md +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [1.5.3](https://github.com/o2project/design-system/compare/v1.5.2...v1.5.3) (2026-01-19)
|
|
2
|
+
|
|
3
|
+
### 🐛 Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **ci:** add setup-node for semantic-release ([58476d8](https://github.com/o2project/design-system/commit/58476d853da0a46d3054eea89b3ca6da86d1c01b))
|
|
6
|
+
* **ci:** correct oven-sh/setup-bun commit SHA ([1e1b6ff](https://github.com/o2project/design-system/commit/1e1b6ff22fede0fe472b9b74a9c4ac3a008e8661))
|
|
7
|
+
|
|
8
|
+
### 📚 Some changes
|
|
9
|
+
|
|
10
|
+
* **deps:** update actions/cache action to v5 ([f3d32fb](https://github.com/o2project/design-system/commit/f3d32fbc71e374af499dd1ee5348e7626ac4fd6b))
|
|
11
|
+
|
|
1
12
|
## [1.5.2](https://github.com/o2project/design-system/compare/v1.5.1...v1.5.2) (2026-01-18)
|
|
2
13
|
|
|
3
14
|
### 📚 Some changes
|
package/README.md
CHANGED
|
@@ -9,12 +9,12 @@ This design system is built with [Storybook](https://storybook.js.org/) and styl
|
|
|
9
9
|
### Prerequisites
|
|
10
10
|
|
|
11
11
|
- Node.js (version 18 or higher recommended)
|
|
12
|
-
-
|
|
12
|
+
- [Bun](https://bun.sh/)
|
|
13
13
|
|
|
14
14
|
### Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
|
|
17
|
+
bun install
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
### Development
|
|
@@ -22,7 +22,7 @@ npm install
|
|
|
22
22
|
Start the Storybook development server:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
|
|
25
|
+
bun run storybook
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
This will start Storybook at [http://localhost:15021](http://localhost:15021)
|
|
@@ -32,7 +32,7 @@ This will start Storybook at [http://localhost:15021](http://localhost:15021)
|
|
|
32
32
|
Build a static version of Storybook:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
|
|
35
|
+
bun run build-storybook
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
The static files will be generated in the `storybook-static/` directory.
|
|
@@ -107,7 +107,7 @@ This design system uses OKLCH color space for perceptually uniform colors.
|
|
|
107
107
|
To generate color files for different frameworks:
|
|
108
108
|
|
|
109
109
|
```bash
|
|
110
|
-
|
|
110
|
+
bun run build
|
|
111
111
|
```
|
|
112
112
|
|
|
113
113
|
This command generates:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o2project/design-system",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Design system for O2 Project",
|
|
6
6
|
"publishConfig": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@storybook/react-vite": "10.1.11",
|
|
47
47
|
"@tailwindcss/postcss": "4.1.18",
|
|
48
48
|
"@types/culori": "4.0.1",
|
|
49
|
-
"@types/node": "25.0.
|
|
49
|
+
"@types/node": "25.0.9",
|
|
50
50
|
"@types/react": "19.2.8",
|
|
51
51
|
"@types/react-dom": "19.2.3",
|
|
52
52
|
"conventional-changelog-conventionalcommits": "9.1.0",
|