reactive-bulma 5.0.0 → 5.0.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 +10 -10
- package/package.json +16 -20
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Component library based on React, Bulma, Typescript and Vite
|
|
|
31
31
|
|
|
32
32
|
## Purpose
|
|
33
33
|
|
|
34
|
-
After studying [an Udemy course
|
|
34
|
+
After studying [an Udemy course on TypeScript](https://github.com/NicolasOmar/typescript-practice), I wanted to start a new project to practice my new knowledge with a meaningful tool. Therefore, I began this project to understand how to create a component library and investigate the best ways to maintain and nourish it, as well as any professional-level alternatives.
|
|
35
35
|
|
|
36
36
|
## Status
|
|
37
37
|
|
|
@@ -125,23 +125,23 @@ Several quick start options are available:
|
|
|
125
125
|
|
|
126
126
|
In case you have cloned the repo, it will show you the following folders:
|
|
127
127
|
- `_templates:` Dedicated to [Hygen](https://www.hygen.io/) configuration and implementation files. Dedicated to creating new components from customizable templates.
|
|
128
|
-
- `.github:` [Github Actions](https://github.com/features/actions/) files used to run post-merge
|
|
128
|
+
- `.github:` [Github Actions](https://github.com/features/actions/) files used to run post-merge commits like unit test coverage collection.
|
|
129
129
|
- `.husky:` Dedicated to [Husky](https://typicode.github.io/husky/) configuration files.
|
|
130
130
|
- `.storybook:` Dedicated to [Storybook](https://storybook.js.org/) configuration files.
|
|
131
131
|
- `src:`
|
|
132
|
-
- `constants:` Location of shared constant values to be used in interfaces and component implementations.
|
|
133
132
|
- `components:` Location of all used components, using [Atomic Design hierarchy structure](https://atomicdesign.bradfrost.com/chapter-2/)
|
|
134
133
|
- `atoms` (from `v1.0.0`).
|
|
135
134
|
- `molecules` (from `v2.0.0`).
|
|
136
135
|
- `organisms` (from `v3.0.0`).
|
|
137
|
-
- `
|
|
136
|
+
- `constants:` Location of shared constant values to be used in interfaces and component implementations.
|
|
137
|
+
- `design`: Location of standard design tokens (coded on `.mdx` files) displayed above component sections in the storybook's instance.
|
|
138
138
|
- `functions`: Dedicated to parsers and helper functions for repetitive logic.
|
|
139
|
-
- `interfaces`: Dedicated to
|
|
139
|
+
- `interfaces`: Dedicated to component and function typing interfaces.
|
|
140
140
|
- `types`: Dedicated to Bulma's style typesetting (part of the component's properties).
|
|
141
141
|
|
|
142
142
|
## Documentation
|
|
143
143
|
|
|
144
|
-
Reactive
|
|
144
|
+
Reactive Bulma's documentation, included in this repo in the root directory, is built with [Storybook](https://storybook.js.org/) and publicly hosted on `Netlify` at <https://reactivebulma.netlify.app/>. The docs can also be run locally.
|
|
145
145
|
|
|
146
146
|
### Running documentation locally
|
|
147
147
|
- Go to the `reactive-bulma` folder (where you cloned the repo before).
|
|
@@ -199,13 +199,13 @@ Given the mentioned release logic, `main` is the only static branch, and each de
|
|
|
199
199
|
|
|
200
200
|
## Roadmap
|
|
201
201
|
|
|
202
|
-
|
|
202
|
+
From mid-September to the end of November (2025), I updated ReactiveBulma's main tools to their latest major versions ([Bulma v1](https://bulma.io/documentation/start/migrating-to-v1/) and [React v19](https://react.dev/blog/2024/12/05/react-19)), which includes issues and pull requests I wrapped [in version](https://github.com/NicolasOmar/reactive-bulma/milestone/6?closed=1) `v5`.
|
|
203
203
|
|
|
204
|
-
|
|
204
|
+
Nowadays, I am updating the rest of the dependencies every week, creating a PR alongside its related branch and PR to maintain track of those updates.
|
|
205
205
|
|
|
206
|
-
|
|
206
|
+
For the near future. I will continue with my full-stack app [MyPets](https://github.com/NicolasOmar/my-pets), where I migrated all custom components, leaving me with code I can get rid of and, in the process, finding new opportunities to enhance component usability.
|
|
207
207
|
|
|
208
|
-
|
|
208
|
+
If you want the actual short-term status, go to the [project board](https://github.com/users/NicolasOmar/projects/3) (powered by `GitHub Projects`).
|
|
209
209
|
|
|
210
210
|
<details>
|
|
211
211
|
<summary>Here is the status table I used to keep track of the worked milestones/versions. (v5 included)</summary>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactive-bulma",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A component library based on React, Bulma, Typescript and Vite",
|
|
6
6
|
"keywords": [
|
|
@@ -53,10 +53,6 @@
|
|
|
53
53
|
"update:storybook": "npx storybook@latest upgrade && npm run build:storybook",
|
|
54
54
|
"update:doctor": "npm run prettier:ci && npm run lint && npm run test && npm run build"
|
|
55
55
|
},
|
|
56
|
-
"peerDependencies": {
|
|
57
|
-
"react": "^18.3.1",
|
|
58
|
-
"react-dom": "^18.3.1"
|
|
59
|
-
},
|
|
60
56
|
"devDependencies": {
|
|
61
57
|
"@babel/core": "^7.28.5",
|
|
62
58
|
"@babel/preset-env": "^7.28.5",
|
|
@@ -72,21 +68,21 @@
|
|
|
72
68
|
"@semantic-release/github": "^12.0.2",
|
|
73
69
|
"@semantic-release/npm": "^13.1.2",
|
|
74
70
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
75
|
-
"@storybook/addon-docs": "^10.
|
|
76
|
-
"@storybook/addon-links": "^10.
|
|
77
|
-
"@storybook/addon-onboarding": "^10.
|
|
78
|
-
"@storybook/addon-themes": "^10.
|
|
79
|
-
"@storybook/react-vite": "^10.
|
|
71
|
+
"@storybook/addon-docs": "^10.1.4",
|
|
72
|
+
"@storybook/addon-links": "^10.1.4",
|
|
73
|
+
"@storybook/addon-onboarding": "^10.1.4",
|
|
74
|
+
"@storybook/addon-themes": "^10.1.4",
|
|
75
|
+
"@storybook/react-vite": "^10.1.4",
|
|
80
76
|
"@testing-library/jest-dom": "^6.9.1",
|
|
81
77
|
"@testing-library/react": "^16.3.0",
|
|
82
78
|
"@testing-library/user-event": "^14.6.1",
|
|
83
79
|
"@types/css-modules": "^1.0.5",
|
|
84
80
|
"@types/jest": "^30.0.0",
|
|
85
81
|
"@types/node": "^24.10.1",
|
|
86
|
-
"@types/react": "^19.2.
|
|
82
|
+
"@types/react": "^19.2.7",
|
|
87
83
|
"@types/react-dom": "^19.2.3",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
89
|
-
"@typescript-eslint/parser": "^8.
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
85
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
90
86
|
"@vitejs/plugin-react": "^5.1.1",
|
|
91
87
|
"babel-jest": "^30.2.0",
|
|
92
88
|
"babel-loader": "^10.0.0",
|
|
@@ -96,7 +92,7 @@
|
|
|
96
92
|
"eslint-plugin-react": "^7.37.5",
|
|
97
93
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
98
94
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
99
|
-
"eslint-plugin-storybook": "^10.
|
|
95
|
+
"eslint-plugin-storybook": "^10.1.4",
|
|
100
96
|
"glob": "^13.0.0",
|
|
101
97
|
"globals": "^16.5.0",
|
|
102
98
|
"husky": "^9.1.7",
|
|
@@ -105,15 +101,15 @@
|
|
|
105
101
|
"jest-environment-jsdom": "^30.2.0",
|
|
106
102
|
"lint-staged": "^16.2.7",
|
|
107
103
|
"npm-check-updates": "^19.1.2",
|
|
108
|
-
"prettier": "^3.
|
|
109
|
-
"react": "^19.2.
|
|
110
|
-
"react-dom": "^19.2.
|
|
104
|
+
"prettier": "^3.7.4",
|
|
105
|
+
"react": "^19.2.1",
|
|
106
|
+
"react-dom": "^19.2.1",
|
|
111
107
|
"semantic-release": "^25.0.2",
|
|
112
|
-
"storybook": "^10.
|
|
108
|
+
"storybook": "^10.1.4",
|
|
113
109
|
"tslib": "^2.8.1",
|
|
114
110
|
"typescript": "~5.9.3",
|
|
115
|
-
"typescript-eslint": "^8.
|
|
116
|
-
"vite": "^7.2.
|
|
111
|
+
"typescript-eslint": "^8.48.1",
|
|
112
|
+
"vite": "^7.2.6",
|
|
117
113
|
"vite-plugin-dts": "^4.5.4"
|
|
118
114
|
},
|
|
119
115
|
"lint-staged": {
|