@ututrust/web-components 2.3.0-alpha.0 → 2.3.0-alpha.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 (4) hide show
  1. package/README.md +0 -88
  2. package/dist/index.cjs +218 -211
  3. package/dist/index.js +30117 -24873
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -283,91 +283,3 @@ This will generate a ```.tgz``` file at the directory’s root with a structure
283
283
  $ npm install <path to the package>/utu-web-components-1.0.0.tgz
284
284
  ```
285
285
 
286
- ## 🚀Release Workflow
287
-
288
- We maintain **two types of releases** for the SDK:
289
-
290
- - **Production release** → `UnlockGateway` **enabled**
291
- - **Staging release** → `UnlockGateway` **commented out**
292
-
293
- ---
294
-
295
- ### 🔹Production Release
296
-
297
- ```bash
298
- # make sure main is up to date
299
- git checkout main
300
- git pull
301
-
302
- # create + switch to a release branch
303
- git checkout -b release-[version]
304
-
305
- ```
306
-
307
- ➡️ In `FeedbackDetails.tsx`
308
-
309
- Ensure the `UnlockGateway` tags are **active**:
310
-
311
- ```tsx
312
- <UnlockGateway address={sourceUuid}>
313
- ...feedback details...
314
- </UnlockGateway>
315
-
316
- ```
317
-
318
- ➡️ In `package.json`
319
-
320
- Update the release version number (e.g. `1.2.3`)
321
-
322
- ```bash
323
- git add .
324
- git commit -m "Production release: enabled UnlockGateway + version bump"
325
- git push origin release-[version]
326
-
327
- # build + publish production
328
- npm run build
329
- npm login
330
- npm publish
331
-
332
- ```
333
-
334
- ---
335
-
336
- ### 🔹Staging Release
337
-
338
- ```bash
339
- # back to main
340
- git checkout main
341
- git pull
342
-
343
- # create + switch to a staging branch
344
- git checkout -b release-[version]-alpha
345
-
346
- ```
347
-
348
- ➡️ In `FeedbackDetails.tsx`
349
-
350
- Comment out the `UnlockGateway` tags before building:
351
-
352
- ```tsx
353
- {/* <UnlockGateway address={sourceUuid}> */}
354
- ...feedback details...
355
- {/* </UnlockGateway> */}
356
-
357
- ```
358
-
359
- ➡️ In `package.json`
360
-
361
- Update the version number with an alpha tag (e.g. `1.2.3-alpha`)
362
-
363
- ```bash
364
- git add .
365
- git commit -m "Staging release: commented UnlockGateway + version bump"
366
- git push origin release-[version]-alpha
367
-
368
- # build + publish staging
369
- npm run build
370
- npm login
371
- npm publish
372
-
373
- ```