reactive-bulma 5.1.0 → 5.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.
Files changed (2) hide show
  1. package/README.md +9 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -120,6 +120,10 @@ Several quick start options are available:
120
120
  - Clone the repo: `git clone https://github.com/NicolasOmar/reactive-bulma.git`.
121
121
  - Install with [npm](https://www.npmjs.com/package/reactive-bulma): `npm install reactive-bulma@latest`
122
122
  - Before cloning this repo, I recommend installing [Node](https://nodejs.org/en/download/) `>=20.10.0` to install packages.
123
+ - Once the package has been installed, add at your's React main application file (`main.jsx/tsx`) the following line to inject bulma's styles:
124
+ ```jsx
125
+ import '../node_modules/reactive-bulma/dist/reactive-bulma.css'
126
+ ```
123
127
 
124
128
  ## Folder structure
125
129
 
@@ -148,7 +152,7 @@ Reactive Bulma's documentation, included in this repo in the root directory, is
148
152
  - Open a console and run `npm install` to install the Node.js dependencies, including Storybook (the site builder).
149
153
  - Run `npm start`.
150
154
  - Wait until a new tab opens with url <http://localhost:6006/> in your browser.
151
- - If you want to initiate it in the background, you can run `npm run start:cli.`
155
+ - If you want to initiate it in the background, you can run `npm run start:cli`.
152
156
 
153
157
  Learn more about `Storybook` by reading its [documentation](https://storybook.js.org/docs/react/get-started/install).
154
158
 
@@ -199,14 +203,14 @@ Given the mentioned release logic, `main` is the only static branch, and each de
199
203
 
200
204
  ## Roadmap
201
205
 
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`.
206
+ 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 `v5`](https://github.com/NicolasOmar/reactive-bulma/milestone/6?closed=1).
203
207
 
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
-
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.
208
+ 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.
207
209
 
208
210
  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
211
 
212
+ During 2026, I will continue with my full-stack app [MyPets](https://github.com/NicolasOmar/my-pets), where I use this library to build its UI.
213
+
210
214
  <details>
211
215
  <summary>Here is the status table I used to keep track of the worked milestones/versions. (v5 included)</summary>
212
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactive-bulma",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "type": "module",
5
5
  "description": "A component library based on React, Bulma, Typescript and Vite",
6
6
  "keywords": [
@@ -81,8 +81,8 @@
81
81
  "@types/node": "^25.0.3",
82
82
  "@types/react": "^19.2.7",
83
83
  "@types/react-dom": "^19.2.3",
84
- "@typescript-eslint/eslint-plugin": "^8.50.0",
85
- "@typescript-eslint/parser": "^8.50.0",
84
+ "@typescript-eslint/eslint-plugin": "^8.50.1",
85
+ "@typescript-eslint/parser": "^8.50.1",
86
86
  "@vitejs/plugin-react": "^5.1.2",
87
87
  "babel-jest": "^30.2.0",
88
88
  "babel-loader": "^10.0.0",
@@ -108,7 +108,7 @@
108
108
  "storybook": "^10.1.10",
109
109
  "tslib": "^2.8.1",
110
110
  "typescript": "~5.9.3",
111
- "typescript-eslint": "^8.50.0",
111
+ "typescript-eslint": "^8.50.1",
112
112
  "vite": "^7.3.0",
113
113
  "vite-plugin-dts": "^4.5.4"
114
114
  },