viainti-chart 1.0.3 → 1.0.6

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 CHANGED
@@ -146,9 +146,13 @@ npm run dev # launches the Vite example in /example
146
146
 
147
147
  ## Publishing a new version
148
148
 
149
+ 1. Actualiza la versión en `package.json` (o ejecuta `npm version <patch|minor|major>` para crear la etiqueta automáticamente).
150
+ 2. Ejecuta `npm install` (si es la primera vez en esa máquina) y luego `npm run build` para regenerar `dist/`.
151
+ 3. Revisa el README / changelog y confirma que todo lo documentado corresponde a la versión que vas a subir.
152
+ 4. Publica el paquete:
153
+
149
154
  ```bash
150
- npm run build # ensure dist/ is up to date
151
- npm version patch # or minor/major as needed
155
+ npm run build # asegúrate de que dist/ está actualizado
152
156
  npm publish --access public
153
157
  ```
154
158