@bitux/review-layer-react 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +1 -25
  2. package/package.json +1 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @bitux/review-layer-react
2
2
 
3
- SDK de React para dejar comentarios de revisión (QA, UX, PM) directamente sobre la UI en entornos de staging. Se conecta a la API [review-layer-api](https://github.com/bitux/review-layer-api).
3
+ SDK de React para dejar comentarios de revisión (QA, UX, PM) directamente sobre la UI en entornos de staging. Se conecta a un backend de API (review-layer-api).
4
4
 
5
5
  ## Instalación
6
6
 
@@ -114,27 +114,3 @@ Se ejecutan pruebas de `selector` y de la capa `api` (con `fetch` mockeado).
114
114
  ```
115
115
 
116
116
  3. En la demo: **Shift + R** para activar modo revisión, haz clic en un elemento y envía un comentario. Comprueba que los pins aparecen y que en la API se crean los comentarios.
117
-
118
- ## Publicar en npm
119
-
120
- 1. **Cuenta npm**: crea una en [npmjs.com](https://www.npmjs.com/) si no tienes. Para un paquete con scope (`@bitux/review-layer-react`) la primera vez debes publicar como público (en `package.json` ya está `"publishConfig": { "access": "public" }`).
121
-
122
- 2. **Repository**: la URL del repo en `package.json` apunta a `github.com/bitux/review-layer-react`. Ajusta si el nombre del repo es otro.
123
-
124
- 3. **Build y publicar**:
125
-
126
- ```bash
127
- npm run build
128
- npm login
129
- npm publish
130
- ```
131
-
132
- **Publicar una nueva versión (sube patch, minor o major y publica):**
133
-
134
- ```bash
135
- npm run release:patch # 0.1.0 → 0.1.1 (cambios pequeños, fixes)
136
- npm run release:minor # 0.1.0 → 0.2.0 (nuevas funciones, compatible)
137
- npm run release:major # 0.1.0 → 1.0.0 (cambios que rompen compatibilidad)
138
- ```
139
-
140
- Cada script actualiza la versión en `package.json`, hace `build` y `npm publish`. Luego haz commit y tag en git si quieres (ej. `git add package.json package-lock.json && git commit -m "v0.1.1" && git tag v0.1.1`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitux/review-layer-react",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "SDK to leave UI comments on staging React applications",
5
5
  "type": "module",
6
6
  "main": "./dist/review-layer-react.umd.cjs",
@@ -16,10 +16,6 @@
16
16
  "files": [
17
17
  "dist"
18
18
  ],
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/bitux/review-layer-react.git"
22
- },
23
19
  "keywords": [
24
20
  "review",
25
21
  "comments",