tokenizer-ui-kit 0.2.26 → 0.2.27

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
@@ -354,6 +354,35 @@ The UI Kit provides a set of typography utility classes that can be used directl
354
354
 
355
355
  📖 **Подробная документация по CSS переменным:** см. [VARIABLES.md](./VARIABLES.md)
356
356
 
357
+ ## 🛠️ Разработка и тестирование
358
+
359
+ При работе над изменениями в ui-kit следуйте следующему процессу:
360
+
361
+ 1. **Вносим правки в ui-kit** - вносите необходимые изменения в компоненты или стили ui-kit
362
+
363
+ 2. **Собираем ui-kit** - выполните сборку проекта:
364
+ ```bash
365
+ npm run build
366
+ ```
367
+
368
+ 3. **Указываем путь до ui-kit в основном проекте** - в `package.json` основного проекта укажите локальный путь:
369
+ ```json
370
+ {
371
+ "dependencies": {
372
+ "tokenizer-ui-kit": "file:../ui-kit/tokenizer"
373
+ }
374
+ }
375
+ ```
376
+
377
+ 4. **Устанавливаем зависимости** - выполните установку зависимостей в основном проекте:
378
+ ```bash
379
+ pnpm install
380
+ ```
381
+
382
+ 5. **Тестируем** - проверьте работу изменений в основном проекте
383
+
384
+ 6. **Возвращаем новую версию** - после успешного тестирования верните обычную версию пакета в `package.json` основного проекта (например, версию из npm registry)
385
+
357
386
  ## 📚 Documentation
358
387
 
359
388
  Each component comes with TypeScript support and comprehensive documentation.