@nitra/cursor 1.18.2 → 1.18.3

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  Формат — [Keep a Changelog](https://keepachangelog.com/uk/1.1.0/), нумерація — [SemVer](https://semver.org/lang/uk/).
6
6
 
7
+ ## [1.18.3] - 2026-05-25
8
+
9
+ ### Changed
10
+
11
+ - Canonical `.cargo/mutants.toml` baseline: `additional_cargo_test_args = ["--lib", "--tests"]` — виключає `--bins` і `--doc` фази, які перебудовують Tauri-бінарник та doc-tests при кожному мутанті, збільшуючи час з секунд до хвилин.
12
+
7
13
  ## [1.18.2] - 2026-05-25
8
14
 
9
15
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nitra/cursor",
3
- "version": "1.18.2",
3
+ "version": "1.18.3",
4
4
  "description": "CLI для завантаження cursor-правил (префікс n-) у локальний репозиторій",
5
5
  "keywords": [
6
6
  "cli",
@@ -2,3 +2,7 @@
2
2
  # cargo-mutants має робочі defaults; цей файл — стартова точка для customization.
3
3
  # Документація: https://mutants.rs/
4
4
  # Канон постачає правило `test` (@nitra/cursor).
5
+
6
+ # Виключаємо --bins і --doc: бінарник Tauri та doc-tests щоразу перезбираються
7
+ # з нуля навіть з кешем, що збільшує час кожного мутанту з секунд до хвилин.
8
+ additional_cargo_test_args = ["--lib", "--tests"]