@nitra/cursor 1.29.3 → 1.29.4
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.
|
@@ -36,7 +36,7 @@ log() { printf '%s %s\n' "$(date -Iseconds)" "$*" >> "$LOG"; }
|
|
|
36
36
|
|
|
37
37
|
# Підвантажуємо спільний helper (sourcing — не sub-shell, функції видимі поточному скрипту).
|
|
38
38
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
39
|
-
# shellcheck source=
|
|
39
|
+
# shellcheck source=lib/tooling-only.sh disable=SC1091
|
|
40
40
|
. "$SCRIPT_DIR/lib/tooling-only.sh"
|
|
41
41
|
|
|
42
42
|
log "fired: $SESSION_ID"
|
|
@@ -41,7 +41,7 @@ log() { printf '%s %s\n' "$(date -Iseconds)" "$*" >> "$LOG"; }
|
|
|
41
41
|
|
|
42
42
|
# Підвантажуємо спільний helper (sourcing — не sub-shell, функції видимі поточному скрипту).
|
|
43
43
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
44
|
-
# shellcheck source=
|
|
44
|
+
# shellcheck source=lib/tooling-only.sh disable=SC1091
|
|
45
45
|
. "$SCRIPT_DIR/lib/tooling-only.sh"
|
|
46
46
|
|
|
47
47
|
# Витягає поле `transcript:` з YAML frontmatter ADR-чернетки.
|
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.29.4] - 2026-05-29
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **`.claude-template/hooks/capture-decisions.sh`**, **`.claude-template/hooks/normalize-decisions.sh`** — директива sourcing-у helper-а змінена з `# shellcheck source=npm/.claude-template/hooks/lib/tooling-only.sh` на `# shellcheck source=lib/tooling-only.sh disable=SC1091`. Без `-x` shellcheck не «заходить» у sourced-файл і видає **SC1091** (info), а `runFinalShellcheck` у `rules/text/lint/run-shellcheck.mjs` валить `lint-text` на будь-якому ненульовому exit (info включно). Відносний `source=lib/tooling-only.sh` узгоджений із фікстурою `scripts/tests/sync-claude-config.test.mjs`; `disable=SC1091` глушить info у фінальному прогоні без `-x`. Проєктні копії в `.claude/hooks/` синкаються звідси.
|
|
12
|
+
|
|
7
13
|
## [1.29.3] - 2026-05-29
|
|
8
14
|
|
|
9
15
|
### Changed
|