specweave 0.24.1 → 0.24.8
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/CLAUDE.md +106 -0
- package/README.md +34 -0
- package/dist/src/cli/commands/init.d.ts.map +1 -1
- package/dist/src/cli/commands/init.js +80 -41
- package/dist/src/cli/commands/init.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts +5 -2
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js +72 -6
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github.d.ts +2 -1
- package/dist/src/cli/helpers/issue-tracker/github.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github.js +4 -3
- package/dist/src/cli/helpers/issue-tracker/github.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/index.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/index.js +26 -9
- package/dist/src/cli/helpers/issue-tracker/index.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/types.d.ts +2 -1
- package/dist/src/cli/helpers/issue-tracker/types.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/types.js.map +1 -1
- package/dist/src/config/types.d.ts +24 -24
- package/dist/src/core/config/types.d.ts +25 -0
- package/dist/src/core/config/types.d.ts.map +1 -1
- package/dist/src/core/config/types.js +6 -0
- package/dist/src/core/config/types.js.map +1 -1
- package/dist/src/core/repo-structure/git-error-handler.d.ts +37 -0
- package/dist/src/core/repo-structure/git-error-handler.d.ts.map +1 -0
- package/dist/src/core/repo-structure/git-error-handler.js +214 -0
- package/dist/src/core/repo-structure/git-error-handler.js.map +1 -0
- package/dist/src/core/repo-structure/git-provider.d.ts +183 -0
- package/dist/src/core/repo-structure/git-provider.d.ts.map +1 -0
- package/dist/src/core/repo-structure/git-provider.js +57 -0
- package/dist/src/core/repo-structure/git-provider.js.map +1 -0
- package/dist/src/core/repo-structure/github-validator.d.ts +1 -0
- package/dist/src/core/repo-structure/github-validator.d.ts.map +1 -1
- package/dist/src/core/repo-structure/github-validator.js +35 -9
- package/dist/src/core/repo-structure/github-validator.js.map +1 -1
- package/dist/src/core/repo-structure/platform-registry.d.ts +114 -0
- package/dist/src/core/repo-structure/platform-registry.d.ts.map +1 -0
- package/dist/src/core/repo-structure/platform-registry.js +195 -0
- package/dist/src/core/repo-structure/platform-registry.js.map +1 -0
- package/dist/src/core/repo-structure/prompt-consolidator.d.ts +30 -0
- package/dist/src/core/repo-structure/prompt-consolidator.d.ts.map +1 -1
- package/dist/src/core/repo-structure/prompt-consolidator.js +69 -0
- package/dist/src/core/repo-structure/prompt-consolidator.js.map +1 -1
- package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts +54 -0
- package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts.map +1 -0
- package/dist/src/core/repo-structure/providers/bitbucket-provider.js +104 -0
- package/dist/src/core/repo-structure/providers/bitbucket-provider.js.map +1 -0
- package/dist/src/core/repo-structure/providers/github-provider.d.ts +53 -0
- package/dist/src/core/repo-structure/providers/github-provider.d.ts.map +1 -0
- package/dist/src/core/repo-structure/providers/github-provider.js +239 -0
- package/dist/src/core/repo-structure/providers/github-provider.js.map +1 -0
- package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts +50 -0
- package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts.map +1 -0
- package/dist/src/core/repo-structure/providers/gitlab-provider.js +97 -0
- package/dist/src/core/repo-structure/providers/gitlab-provider.js.map +1 -0
- package/dist/src/core/repo-structure/providers/index.d.ts +33 -0
- package/dist/src/core/repo-structure/providers/index.d.ts.map +1 -0
- package/dist/src/core/repo-structure/providers/index.js +60 -0
- package/dist/src/core/repo-structure/providers/index.js.map +1 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts +33 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts.map +1 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.js +275 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.js.map +1 -0
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts +18 -2
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.js +303 -85
- package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
- package/dist/src/core/repo-structure/url-generator.d.ts +80 -0
- package/dist/src/core/repo-structure/url-generator.d.ts.map +1 -0
- package/dist/src/core/repo-structure/url-generator.js +110 -0
- package/dist/src/core/repo-structure/url-generator.js.map +1 -0
- package/dist/src/init/architecture/types.d.ts +6 -6
- package/dist/src/utils/plugin-validator.d.ts.map +1 -1
- package/dist/src/utils/plugin-validator.js +15 -14
- package/dist/src/utils/plugin-validator.js.map +1 -1
- package/package.json +4 -4
- package/plugins/specweave/.claude-plugin/plugin.json +4 -4
- package/plugins/specweave/agents/pm/AGENT.md +2 -0
- package/plugins/specweave/commands/specweave-do.md +0 -47
- package/plugins/specweave/commands/specweave-increment.md +0 -82
- package/plugins/specweave/commands/specweave-next.md +0 -47
- package/plugins/specweave/hooks/post-task-completion.sh +67 -6
- package/plugins/specweave/hooks/pre-edit-spec.sh +11 -0
- package/plugins/specweave/hooks/pre-task-completion.sh +69 -2
- package/plugins/specweave/hooks/pre-write-spec.sh +11 -0
- package/plugins/specweave/skills/increment-planner/SKILL.md +124 -4
- package/plugins/specweave-ado/lib/ado-multi-project-sync.js +0 -1
- package/plugins/specweave-jira/lib/enhanced-jira-sync.js +3 -3
- package/plugins/specweave/agents/pm/AGENT.md.bak +0 -1893
- package/plugins/specweave/hooks/docs-changed.sh.backup +0 -79
- package/plugins/specweave/hooks/human-input-required.sh.backup +0 -75
- package/plugins/specweave/hooks/lib/migrate-increment-work.sh.bak +0 -245
- package/plugins/specweave/hooks/lib/sync-spec-content.sh.bak +0 -149
- package/plugins/specweave/hooks/lib/validate-spec-status.sh.bak +0 -163
- package/plugins/specweave/hooks/post-first-increment.sh.backup +0 -61
- package/plugins/specweave/hooks/post-first-increment.sh.bak +0 -61
- package/plugins/specweave/hooks/post-increment-change.sh.backup +0 -98
- package/plugins/specweave/hooks/post-increment-completion.sh.backup +0 -231
- package/plugins/specweave/hooks/post-increment-planning.sh.backup +0 -1048
- package/plugins/specweave/hooks/post-increment-status-change.sh.backup +0 -147
- package/plugins/specweave/hooks/post-spec-update.sh.backup +0 -158
- package/plugins/specweave/hooks/post-spec-update.sh.bak +0 -158
- package/plugins/specweave/hooks/post-user-story-complete.sh.backup +0 -179
- package/plugins/specweave/hooks/post-user-story-complete.sh.bak +0 -179
- package/plugins/specweave/hooks/pre-command-deduplication.sh.backup +0 -83
- package/plugins/specweave/hooks/pre-command-deduplication.sh.bak +0 -83
- package/plugins/specweave/hooks/pre-implementation.sh.backup +0 -67
- package/plugins/specweave/hooks/pre-task-completion.sh.backup +0 -194
- package/plugins/specweave/hooks/pre-tool-use.sh.backup +0 -133
- package/plugins/specweave/hooks/user-prompt-submit.sh.backup +0 -386
- package/plugins/specweave/hooks/user-prompt-submit.sh.bak +0 -386
- package/plugins/specweave/lib/hooks/auto-transition.js.bak +0 -50
- package/plugins/specweave/lib/hooks/auto-transition.ts.bak +0 -84
- package/plugins/specweave/lib/hooks/git-diff-analyzer.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/git-diff-analyzer.d.ts.bak +0 -89
- package/plugins/specweave/lib/hooks/git-diff-analyzer.js.bak +0 -142
- package/plugins/specweave/lib/hooks/git-diff-analyzer.ts.bak +0 -269
- package/plugins/specweave/lib/hooks/invoke-translator-skill.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/invoke-translator-skill.d.ts.bak +0 -60
- package/plugins/specweave/lib/hooks/invoke-translator-skill.js.bak +0 -155
- package/plugins/specweave/lib/hooks/invoke-translator-skill.ts.bak +0 -264
- package/plugins/specweave/lib/hooks/prepare-reflection-context.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/prepare-reflection-context.d.ts.bak +0 -42
- package/plugins/specweave/lib/hooks/prepare-reflection-context.js.bak +0 -110
- package/plugins/specweave/lib/hooks/prepare-reflection-context.ts.bak +0 -178
- package/plugins/specweave/lib/hooks/reflection-config-loader.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/reflection-config-loader.d.ts.bak +0 -45
- package/plugins/specweave/lib/hooks/reflection-config-loader.js.bak +0 -92
- package/plugins/specweave/lib/hooks/reflection-config-loader.ts.bak +0 -156
- package/plugins/specweave/lib/hooks/reflection-parser.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/reflection-parser.d.ts.bak +0 -33
- package/plugins/specweave/lib/hooks/reflection-parser.js.bak +0 -301
- package/plugins/specweave/lib/hooks/reflection-parser.ts.bak +0 -484
- package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.ts.bak +0 -56
- package/plugins/specweave/lib/hooks/reflection-prompt-builder.js.bak +0 -182
- package/plugins/specweave/lib/hooks/reflection-prompt-builder.ts.bak +0 -306
- package/plugins/specweave/lib/hooks/reflection-storage.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/reflection-storage.d.ts.bak +0 -64
- package/plugins/specweave/lib/hooks/reflection-storage.js.bak +0 -231
- package/plugins/specweave/lib/hooks/reflection-storage.ts.bak +0 -369
- package/plugins/specweave/lib/hooks/run-self-reflection.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/run-self-reflection.d.ts.bak +0 -43
- package/plugins/specweave/lib/hooks/run-self-reflection.js.bak +0 -132
- package/plugins/specweave/lib/hooks/run-self-reflection.ts.bak +0 -258
- package/plugins/specweave/lib/hooks/sync-cache.js.bak +0 -294
- package/plugins/specweave/lib/hooks/sync-living-docs.d.js.bak +0 -1
- package/plugins/specweave/lib/hooks/sync-living-docs.d.ts.bak +0 -27
- package/plugins/specweave/lib/hooks/sync-living-docs.js.bak +0 -339
- package/plugins/specweave/lib/hooks/sync-us-tasks.js.bak +0 -476
- package/plugins/specweave/lib/hooks/translate-file.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/translate-file.d.ts.bak +0 -59
- package/plugins/specweave/lib/hooks/translate-file.js.bak +0 -289
- package/plugins/specweave/lib/hooks/translate-file.ts.bak +0 -428
- package/plugins/specweave/lib/hooks/translate-living-docs.d.js.bak +0 -0
- package/plugins/specweave/lib/hooks/translate-living-docs.d.ts.bak +0 -13
- package/plugins/specweave/lib/hooks/translate-living-docs.js.bak +0 -119
- package/plugins/specweave/lib/hooks/translate-living-docs.ts.bak +0 -224
- package/plugins/specweave/lib/hooks/update-ac-status.js.bak +0 -51
- package/plugins/specweave/lib/hooks/update-ac-status.ts.bak +0 -103
- package/plugins/specweave/lib/hooks/update-tasks-md.d.js.bak +0 -1
- package/plugins/specweave/lib/hooks/update-tasks-md.d.ts.bak +0 -29
- package/plugins/specweave/lib/hooks/update-tasks-md.js.bak +0 -296
- package/plugins/specweave/lib/hooks/update-tasks-md.ts.bak +0 -489
- package/plugins/specweave-ado/hooks/post-living-docs-update.sh.backup +0 -353
- package/plugins/specweave-ado/hooks/post-task-completion.sh.backup +0 -172
- package/plugins/specweave-ado/lib/enhanced-ado-sync.js +0 -170
- package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +0 -228
- package/plugins/specweave-github/hooks/post-task-completion.sh.backup +0 -258
- package/plugins/specweave-jira/hooks/post-task-completion.sh.backup +0 -172
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +0 -444
- package/plugins/specweave-release/hooks/post-task-completion.sh.backup +0 -110
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
# SpecWeave JIRA Sync Hook
|
|
4
|
-
# Runs after task completion to sync progress to JIRA Issues
|
|
5
|
-
#
|
|
6
|
-
# This hook is part of the specweave-jira plugin and handles:
|
|
7
|
-
# - Syncing task completion state to JIRA issues
|
|
8
|
-
# - Updating JIRA issue status based on increment progress
|
|
9
|
-
#
|
|
10
|
-
# Dependencies:
|
|
11
|
-
# - Node.js for running sync scripts
|
|
12
|
-
# - jq for JSON parsing
|
|
13
|
-
# - metadata.json must have .jira.issue field
|
|
14
|
-
# - JIRA API credentials in .env
|
|
15
|
-
|
|
16
|
-
set -e
|
|
17
|
-
|
|
18
|
-
# ============================================================================
|
|
19
|
-
# PROJECT ROOT DETECTION
|
|
20
|
-
# ============================================================================
|
|
21
|
-
|
|
22
|
-
# Find project root by searching upward for .specweave/ directory
|
|
23
|
-
find_project_root() {
|
|
24
|
-
local dir="$1"
|
|
25
|
-
while [ "$dir" != "/" ]; do
|
|
26
|
-
if [ -d "$dir/.specweave" ]; then
|
|
27
|
-
echo "$dir"
|
|
28
|
-
return 0
|
|
29
|
-
fi
|
|
30
|
-
dir="$(dirname "$dir")"
|
|
31
|
-
done
|
|
32
|
-
# Fallback: try current directory
|
|
33
|
-
if [ -d "$(pwd)/.specweave" ]; then
|
|
34
|
-
pwd
|
|
35
|
-
else
|
|
36
|
-
echo "$(pwd)"
|
|
37
|
-
fi
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
PROJECT_ROOT="$(find_project_root "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")"
|
|
41
|
-
cd "$PROJECT_ROOT" 2>/dev/null || true
|
|
42
|
-
|
|
43
|
-
# ============================================================================
|
|
44
|
-
# CONFIGURATION
|
|
45
|
-
# ============================================================================
|
|
46
|
-
|
|
47
|
-
LOGS_DIR=".specweave/logs"
|
|
48
|
-
DEBUG_LOG="$LOGS_DIR/hooks-debug.log"
|
|
49
|
-
|
|
50
|
-
mkdir -p "$LOGS_DIR" 2>/dev/null || true
|
|
51
|
-
|
|
52
|
-
# ============================================================================
|
|
53
|
-
# PRECONDITIONS CHECK
|
|
54
|
-
# ============================================================================
|
|
55
|
-
|
|
56
|
-
echo "[$(date)] [JIRA] 🔗 JIRA sync hook fired" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
57
|
-
|
|
58
|
-
# Detect current increment
|
|
59
|
-
CURRENT_INCREMENT=$(ls -td .specweave/increments/*/ 2>/dev/null | xargs -n1 basename | grep -v "_backlog" | grep -v "_archive" | grep -v "_working" | head -1)
|
|
60
|
-
|
|
61
|
-
if [ -z "$CURRENT_INCREMENT" ]; then
|
|
62
|
-
echo "[$(date)] [JIRA] ℹ️ No active increment, skipping JIRA sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
63
|
-
cat <<EOF
|
|
64
|
-
{
|
|
65
|
-
"continue": true
|
|
66
|
-
}
|
|
67
|
-
EOF
|
|
68
|
-
exit 0
|
|
69
|
-
fi
|
|
70
|
-
|
|
71
|
-
# Check for metadata.json
|
|
72
|
-
METADATA_FILE=".specweave/increments/$CURRENT_INCREMENT/metadata.json"
|
|
73
|
-
|
|
74
|
-
if [ ! -f "$METADATA_FILE" ]; then
|
|
75
|
-
echo "[$(date)] [JIRA] ℹ️ No metadata.json for $CURRENT_INCREMENT, skipping JIRA sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
76
|
-
cat <<EOF
|
|
77
|
-
{
|
|
78
|
-
"continue": true
|
|
79
|
-
}
|
|
80
|
-
EOF
|
|
81
|
-
exit 0
|
|
82
|
-
fi
|
|
83
|
-
|
|
84
|
-
# Check for JIRA issue link
|
|
85
|
-
if ! command -v jq &> /dev/null; then
|
|
86
|
-
echo "[$(date)] [JIRA] ⚠️ jq not found, skipping JIRA sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
87
|
-
cat <<EOF
|
|
88
|
-
{
|
|
89
|
-
"continue": true
|
|
90
|
-
}
|
|
91
|
-
EOF
|
|
92
|
-
exit 0
|
|
93
|
-
fi
|
|
94
|
-
|
|
95
|
-
JIRA_ISSUE=$(jq -r '.jira.issue // empty' "$METADATA_FILE" 2>/dev/null)
|
|
96
|
-
|
|
97
|
-
if [ -z "$JIRA_ISSUE" ]; then
|
|
98
|
-
echo "[$(date)] [JIRA] ℹ️ No JIRA issue linked to $CURRENT_INCREMENT, skipping sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
99
|
-
cat <<EOF
|
|
100
|
-
{
|
|
101
|
-
"continue": true
|
|
102
|
-
}
|
|
103
|
-
EOF
|
|
104
|
-
exit 0
|
|
105
|
-
fi
|
|
106
|
-
|
|
107
|
-
# Check for Node.js
|
|
108
|
-
if ! command -v node &> /dev/null; then
|
|
109
|
-
echo "[$(date)] [JIRA] ⚠️ Node.js not found, skipping JIRA sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
110
|
-
cat <<EOF
|
|
111
|
-
{
|
|
112
|
-
"continue": true
|
|
113
|
-
}
|
|
114
|
-
EOF
|
|
115
|
-
exit 0
|
|
116
|
-
fi
|
|
117
|
-
|
|
118
|
-
# Check for JIRA sync script
|
|
119
|
-
if [ ! -f "dist/commands/jira-sync.js" ]; then
|
|
120
|
-
echo "[$(date)] [JIRA] ⚠️ jira-sync.js not found, skipping JIRA sync" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
121
|
-
cat <<EOF
|
|
122
|
-
{
|
|
123
|
-
"continue": true
|
|
124
|
-
}
|
|
125
|
-
EOF
|
|
126
|
-
exit 0
|
|
127
|
-
fi
|
|
128
|
-
|
|
129
|
-
# ============================================================================
|
|
130
|
-
# JIRA SYNC LOGIC
|
|
131
|
-
# ============================================================================
|
|
132
|
-
|
|
133
|
-
echo "[$(date)] [JIRA] 🔄 Syncing to JIRA issue $JIRA_ISSUE" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
134
|
-
|
|
135
|
-
# Run JIRA sync command (non-blocking)
|
|
136
|
-
node dist/commands/jira-sync.js "$CURRENT_INCREMENT" 2>&1 | tee -a "$DEBUG_LOG" >/dev/null || {
|
|
137
|
-
echo "[$(date)] [JIRA] ⚠️ Failed to sync to JIRA (non-blocking)" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
echo "[$(date)] [JIRA] ✅ JIRA sync complete" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
141
|
-
|
|
142
|
-
# ============================================================================
|
|
143
|
-
# SPEC COMMIT SYNC (NEW!)
|
|
144
|
-
# ============================================================================
|
|
145
|
-
|
|
146
|
-
echo "[$(date)] [JIRA] 🔗 Checking for spec commit sync..." >> "$DEBUG_LOG" 2>/dev/null || true
|
|
147
|
-
|
|
148
|
-
# Call TypeScript CLI to sync commits
|
|
149
|
-
if command -v node &> /dev/null && [ -f "$PROJECT_ROOT/dist/cli/commands/sync-spec-commits.js" ]; then
|
|
150
|
-
echo "[$(date)] [JIRA] 🚀 Running spec commit sync..." >> "$DEBUG_LOG" 2>/dev/null || true
|
|
151
|
-
|
|
152
|
-
node "$PROJECT_ROOT/dist/cli/commands/sync-spec-commits.js" \
|
|
153
|
-
--increment "$PROJECT_ROOT/.specweave/increments/$CURRENT_INCREMENT" \
|
|
154
|
-
--provider jira \
|
|
155
|
-
2>&1 | tee -a "$DEBUG_LOG" >/dev/null || {
|
|
156
|
-
echo "[$(date)] [JIRA] ⚠️ Spec commit sync failed (non-blocking)" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
echo "[$(date)] [JIRA] ✅ Spec commit sync complete" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
160
|
-
else
|
|
161
|
-
echo "[$(date)] [JIRA] ℹ️ Spec commit sync not available (node or script not found)" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
162
|
-
fi
|
|
163
|
-
|
|
164
|
-
# ============================================================================
|
|
165
|
-
# OUTPUT TO CLAUDE
|
|
166
|
-
# ============================================================================
|
|
167
|
-
|
|
168
|
-
cat <<EOF
|
|
169
|
-
{
|
|
170
|
-
"continue": true
|
|
171
|
-
}
|
|
172
|
-
EOF
|
|
@@ -1,444 +0,0 @@
|
|
|
1
|
-
[2025-11-22 00:30:08] 🎯 Post-Increment-Completion Hook Triggered
|
|
2
|
-
[2025-11-22 00:30:08] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
3
|
-
[2025-11-22 00:30:08] Run: npm run build
|
|
4
|
-
[2025-11-22 00:30:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
5
|
-
[2025-11-22 00:30:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
6
|
-
[2025-11-22 00:30:14] Run: npm run build
|
|
7
|
-
[2025-11-22 00:30:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
8
|
-
[2025-11-22 00:30:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
9
|
-
[2025-11-22 00:30:19] Run: npm run build
|
|
10
|
-
[2025-11-22 00:30:24] 🎯 Post-Increment-Completion Hook Triggered
|
|
11
|
-
[2025-11-22 00:30:24] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
12
|
-
[2025-11-22 00:30:24] Run: npm run build
|
|
13
|
-
[2025-11-22 00:31:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
14
|
-
[2025-11-22 00:31:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
15
|
-
[2025-11-22 00:31:15] Run: npm run build
|
|
16
|
-
[2025-11-22 00:31:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
17
|
-
[2025-11-22 00:31:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
18
|
-
[2025-11-22 00:31:21] Run: npm run build
|
|
19
|
-
[2025-11-22 00:31:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
20
|
-
[2025-11-22 00:31:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
21
|
-
[2025-11-22 00:31:26] Run: npm run build
|
|
22
|
-
[2025-11-22 00:31:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
23
|
-
[2025-11-22 00:31:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
24
|
-
[2025-11-22 00:31:31] Run: npm run build
|
|
25
|
-
[2025-11-22 00:53:10] 🎯 Post-Increment-Completion Hook Triggered
|
|
26
|
-
[2025-11-22 00:53:10] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
27
|
-
[2025-11-22 00:53:10] Run: npm run build
|
|
28
|
-
[2025-11-22 00:53:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
29
|
-
[2025-11-22 00:53:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
30
|
-
[2025-11-22 00:53:15] Run: npm run build
|
|
31
|
-
[2025-11-22 00:53:20] 🎯 Post-Increment-Completion Hook Triggered
|
|
32
|
-
[2025-11-22 00:53:20] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
33
|
-
[2025-11-22 00:53:20] Run: npm run build
|
|
34
|
-
[2025-11-22 00:53:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
35
|
-
[2025-11-22 00:53:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
36
|
-
[2025-11-22 00:53:26] Run: npm run build
|
|
37
|
-
[2025-11-22 01:03:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
38
|
-
[2025-11-22 01:03:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
39
|
-
[2025-11-22 01:03:42] Run: npm run build
|
|
40
|
-
[2025-11-22 01:03:47] 🎯 Post-Increment-Completion Hook Triggered
|
|
41
|
-
[2025-11-22 01:03:47] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
42
|
-
[2025-11-22 01:03:47] Run: npm run build
|
|
43
|
-
[2025-11-22 01:03:53] 🎯 Post-Increment-Completion Hook Triggered
|
|
44
|
-
[2025-11-22 01:03:53] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
45
|
-
[2025-11-22 01:03:53] Run: npm run build
|
|
46
|
-
[2025-11-22 01:03:58] 🎯 Post-Increment-Completion Hook Triggered
|
|
47
|
-
[2025-11-22 01:03:58] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
48
|
-
[2025-11-22 01:03:58] Run: npm run build
|
|
49
|
-
[2025-11-22 01:15:20] 🎯 Post-Increment-Completion Hook Triggered
|
|
50
|
-
[2025-11-22 01:15:20] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
51
|
-
[2025-11-22 01:15:20] Run: npm run build
|
|
52
|
-
[2025-11-22 01:15:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
53
|
-
[2025-11-22 01:15:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
54
|
-
[2025-11-22 01:15:26] Run: npm run build
|
|
55
|
-
[2025-11-22 01:15:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
56
|
-
[2025-11-22 01:15:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
57
|
-
[2025-11-22 01:15:31] Run: npm run build
|
|
58
|
-
[2025-11-22 01:15:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
59
|
-
[2025-11-22 01:15:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
60
|
-
[2025-11-22 01:15:36] Run: npm run build
|
|
61
|
-
[2025-11-22 01:18:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
62
|
-
[2025-11-22 01:18:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
63
|
-
[2025-11-22 01:18:00] Run: npm run build
|
|
64
|
-
[2025-11-22 01:18:05] 🎯 Post-Increment-Completion Hook Triggered
|
|
65
|
-
[2025-11-22 01:18:05] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
66
|
-
[2025-11-22 01:18:05] Run: npm run build
|
|
67
|
-
[2025-11-22 01:18:10] 🎯 Post-Increment-Completion Hook Triggered
|
|
68
|
-
[2025-11-22 01:18:10] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
69
|
-
[2025-11-22 01:18:10] Run: npm run build
|
|
70
|
-
[2025-11-22 01:18:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
71
|
-
[2025-11-22 01:18:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
72
|
-
[2025-11-22 01:18:15] Run: npm run build
|
|
73
|
-
[2025-11-22 01:28:23] 🎯 Post-Increment-Completion Hook Triggered
|
|
74
|
-
[2025-11-22 01:28:23] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
75
|
-
[2025-11-22 01:28:23] Run: npm run build
|
|
76
|
-
[2025-11-22 01:28:28] 🎯 Post-Increment-Completion Hook Triggered
|
|
77
|
-
[2025-11-22 01:28:28] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
78
|
-
[2025-11-22 01:28:28] Run: npm run build
|
|
79
|
-
[2025-11-22 01:28:33] 🎯 Post-Increment-Completion Hook Triggered
|
|
80
|
-
[2025-11-22 01:28:33] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
81
|
-
[2025-11-22 01:28:33] Run: npm run build
|
|
82
|
-
[2025-11-22 01:28:39] 🎯 Post-Increment-Completion Hook Triggered
|
|
83
|
-
[2025-11-22 01:28:39] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
84
|
-
[2025-11-22 01:28:39] Run: npm run build
|
|
85
|
-
[2025-11-22 01:35:35] 🎯 Post-Increment-Completion Hook Triggered
|
|
86
|
-
[2025-11-22 01:35:35] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
87
|
-
[2025-11-22 01:35:35] Run: npm run build
|
|
88
|
-
[2025-11-22 01:35:40] 🎯 Post-Increment-Completion Hook Triggered
|
|
89
|
-
[2025-11-22 01:35:40] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
90
|
-
[2025-11-22 01:35:40] Run: npm run build
|
|
91
|
-
[2025-11-22 01:35:46] 🎯 Post-Increment-Completion Hook Triggered
|
|
92
|
-
[2025-11-22 01:35:46] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
93
|
-
[2025-11-22 01:35:46] Run: npm run build
|
|
94
|
-
[2025-11-22 01:35:51] 🎯 Post-Increment-Completion Hook Triggered
|
|
95
|
-
[2025-11-22 01:35:51] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
96
|
-
[2025-11-22 01:35:51] Run: npm run build
|
|
97
|
-
[2025-11-22 01:36:08] 🎯 Post-Increment-Completion Hook Triggered
|
|
98
|
-
[2025-11-22 01:36:08] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
99
|
-
[2025-11-22 01:36:08] Run: npm run build
|
|
100
|
-
[2025-11-22 01:36:13] 🎯 Post-Increment-Completion Hook Triggered
|
|
101
|
-
[2025-11-22 01:36:13] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
102
|
-
[2025-11-22 01:36:13] Run: npm run build
|
|
103
|
-
[2025-11-22 01:36:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
104
|
-
[2025-11-22 01:36:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
105
|
-
[2025-11-22 01:36:19] Run: npm run build
|
|
106
|
-
[2025-11-22 01:36:24] 🎯 Post-Increment-Completion Hook Triggered
|
|
107
|
-
[2025-11-22 01:36:24] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
108
|
-
[2025-11-22 01:36:24] Run: npm run build
|
|
109
|
-
[2025-11-22 01:38:01] 🎯 Post-Increment-Completion Hook Triggered
|
|
110
|
-
[2025-11-22 01:38:01] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
111
|
-
[2025-11-22 01:38:01] Run: npm run build
|
|
112
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
113
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
114
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
115
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
116
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
117
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
118
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
119
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
120
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
121
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
122
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
123
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
124
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
125
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
126
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
127
|
-
[2025-11-22 01:38:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
128
|
-
[2025-11-22 01:38:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
129
|
-
[2025-11-22 01:38:02] Run: npm run build
|
|
130
|
-
[2025-11-22 01:38:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
131
|
-
[2025-11-22 01:38:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
132
|
-
[2025-11-22 01:38:03] Run: npm run build
|
|
133
|
-
[2025-11-22 01:43:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
134
|
-
[2025-11-22 01:43:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
135
|
-
[2025-11-22 01:43:09] Run: npm run build
|
|
136
|
-
[2025-11-22 01:43:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
137
|
-
[2025-11-22 01:43:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
138
|
-
[2025-11-22 01:43:14] Run: npm run build
|
|
139
|
-
[2025-11-22 01:43:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
140
|
-
[2025-11-22 01:43:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
141
|
-
[2025-11-22 01:43:19] Run: npm run build
|
|
142
|
-
[2025-11-22 01:43:24] 🎯 Post-Increment-Completion Hook Triggered
|
|
143
|
-
[2025-11-22 01:43:24] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
144
|
-
[2025-11-22 01:43:24] Run: npm run build
|
|
145
|
-
[2025-11-22 01:44:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
146
|
-
[2025-11-22 01:44:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
147
|
-
[2025-11-22 01:44:26] Run: npm run build
|
|
148
|
-
[2025-11-22 01:44:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
149
|
-
[2025-11-22 01:44:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
150
|
-
[2025-11-22 01:44:31] Run: npm run build
|
|
151
|
-
[2025-11-22 01:44:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
152
|
-
[2025-11-22 01:44:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
153
|
-
[2025-11-22 01:44:36] Run: npm run build
|
|
154
|
-
[2025-11-22 01:44:41] 🎯 Post-Increment-Completion Hook Triggered
|
|
155
|
-
[2025-11-22 01:44:41] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
156
|
-
[2025-11-22 01:44:41] Run: npm run build
|
|
157
|
-
[2025-11-22 01:48:29] 🎯 Post-Increment-Completion Hook Triggered
|
|
158
|
-
[2025-11-22 01:48:29] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
159
|
-
[2025-11-22 01:48:29] Run: npm run build
|
|
160
|
-
[2025-11-22 01:48:34] 🎯 Post-Increment-Completion Hook Triggered
|
|
161
|
-
[2025-11-22 01:48:34] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
162
|
-
[2025-11-22 01:48:34] Run: npm run build
|
|
163
|
-
[2025-11-22 01:48:40] 🎯 Post-Increment-Completion Hook Triggered
|
|
164
|
-
[2025-11-22 01:48:40] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
165
|
-
[2025-11-22 01:48:40] Run: npm run build
|
|
166
|
-
[2025-11-22 01:48:46] 🎯 Post-Increment-Completion Hook Triggered
|
|
167
|
-
[2025-11-22 01:48:46] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
168
|
-
[2025-11-22 01:48:46] Run: npm run build
|
|
169
|
-
[2025-11-22 01:49:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
170
|
-
[2025-11-22 01:49:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
171
|
-
[2025-11-22 01:49:11] Run: npm run build
|
|
172
|
-
[2025-11-22 01:49:16] 🎯 Post-Increment-Completion Hook Triggered
|
|
173
|
-
[2025-11-22 01:49:16] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
174
|
-
[2025-11-22 01:49:16] Run: npm run build
|
|
175
|
-
[2025-11-22 01:49:22] 🎯 Post-Increment-Completion Hook Triggered
|
|
176
|
-
[2025-11-22 01:49:22] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
177
|
-
[2025-11-22 01:49:22] Run: npm run build
|
|
178
|
-
[2025-11-22 01:49:27] 🎯 Post-Increment-Completion Hook Triggered
|
|
179
|
-
[2025-11-22 01:49:27] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
180
|
-
[2025-11-22 01:49:27] Run: npm run build
|
|
181
|
-
[2025-11-22 01:49:57] 🎯 Post-Increment-Completion Hook Triggered
|
|
182
|
-
[2025-11-22 01:49:57] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
183
|
-
[2025-11-22 01:49:57] Run: npm run build
|
|
184
|
-
[2025-11-22 01:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
185
|
-
[2025-11-22 01:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
186
|
-
[2025-11-22 01:50:00] Run: npm run build
|
|
187
|
-
[2025-11-22 01:50:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
188
|
-
[2025-11-22 01:50:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
189
|
-
[2025-11-22 01:50:03] Run: npm run build
|
|
190
|
-
[2025-11-22 01:50:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
191
|
-
[2025-11-22 01:50:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
192
|
-
[2025-11-22 01:50:03] Run: npm run build
|
|
193
|
-
[2025-11-22 01:50:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
194
|
-
[2025-11-22 01:50:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
195
|
-
[2025-11-22 01:50:03] Run: npm run build
|
|
196
|
-
[2025-11-22 01:50:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
197
|
-
[2025-11-22 01:50:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
198
|
-
[2025-11-22 01:50:04] Run: npm run build
|
|
199
|
-
[2025-11-22 01:50:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
200
|
-
[2025-11-22 01:50:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
201
|
-
[2025-11-22 01:50:06] Run: npm run build
|
|
202
|
-
[2025-11-22 01:50:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
203
|
-
[2025-11-22 01:50:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
204
|
-
[2025-11-22 01:50:09] Run: npm run build
|
|
205
|
-
[2025-11-22 01:51:25] 🎯 Post-Increment-Completion Hook Triggered
|
|
206
|
-
[2025-11-22 01:51:25] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
207
|
-
[2025-11-22 01:51:25] Run: npm run build
|
|
208
|
-
[2025-11-22 01:51:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
209
|
-
[2025-11-22 01:51:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
210
|
-
[2025-11-22 01:51:31] Run: npm run build
|
|
211
|
-
[2025-11-22 01:51:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
212
|
-
[2025-11-22 01:51:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
213
|
-
[2025-11-22 01:51:37] Run: npm run build
|
|
214
|
-
[2025-11-22 01:51:43] 🎯 Post-Increment-Completion Hook Triggered
|
|
215
|
-
[2025-11-22 01:51:43] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
216
|
-
[2025-11-22 01:51:43] Run: npm run build
|
|
217
|
-
[2025-11-22 01:54:58] 🎯 Post-Increment-Completion Hook Triggered
|
|
218
|
-
[2025-11-22 01:54:58] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
219
|
-
[2025-11-22 01:54:58] Run: npm run build
|
|
220
|
-
[2025-11-22 01:55:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
221
|
-
[2025-11-22 01:55:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
222
|
-
[2025-11-22 01:55:04] Run: npm run build
|
|
223
|
-
[2025-11-22 01:55:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
224
|
-
[2025-11-22 01:55:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
225
|
-
[2025-11-22 01:55:09] Run: npm run build
|
|
226
|
-
[2025-11-22 01:55:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
227
|
-
[2025-11-22 01:55:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
228
|
-
[2025-11-22 01:55:14] Run: npm run build
|
|
229
|
-
[2025-11-22 02:09:07] 🎯 Post-Increment-Completion Hook Triggered
|
|
230
|
-
[2025-11-22 02:09:07] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
231
|
-
[2025-11-22 02:09:07] Run: npm run build
|
|
232
|
-
[2025-11-22 02:09:12] 🎯 Post-Increment-Completion Hook Triggered
|
|
233
|
-
[2025-11-22 02:09:12] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
234
|
-
[2025-11-22 02:09:12] Run: npm run build
|
|
235
|
-
[2025-11-22 02:09:18] 🎯 Post-Increment-Completion Hook Triggered
|
|
236
|
-
[2025-11-22 02:09:18] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
237
|
-
[2025-11-22 02:09:18] Run: npm run build
|
|
238
|
-
[2025-11-22 02:09:23] 🎯 Post-Increment-Completion Hook Triggered
|
|
239
|
-
[2025-11-22 02:09:23] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
240
|
-
[2025-11-22 02:09:23] Run: npm run build
|
|
241
|
-
[2025-11-22 02:09:38] 🎯 Post-Increment-Completion Hook Triggered
|
|
242
|
-
[2025-11-22 02:09:38] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
243
|
-
[2025-11-22 02:09:38] Run: npm run build
|
|
244
|
-
[2025-11-22 02:09:44] 🎯 Post-Increment-Completion Hook Triggered
|
|
245
|
-
[2025-11-22 02:09:44] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
246
|
-
[2025-11-22 02:09:44] Run: npm run build
|
|
247
|
-
[2025-11-22 02:09:49] 🎯 Post-Increment-Completion Hook Triggered
|
|
248
|
-
[2025-11-22 02:09:49] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
249
|
-
[2025-11-22 02:09:49] Run: npm run build
|
|
250
|
-
[2025-11-22 02:09:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
251
|
-
[2025-11-22 02:09:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
252
|
-
[2025-11-22 02:09:54] Run: npm run build
|
|
253
|
-
[2025-11-22 02:20:23] 🎯 Post-Increment-Completion Hook Triggered
|
|
254
|
-
[2025-11-22 02:20:23] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
255
|
-
[2025-11-22 02:20:23] Run: npm run build
|
|
256
|
-
[2025-11-22 02:20:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
257
|
-
[2025-11-22 02:20:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
258
|
-
[2025-11-22 02:20:26] Run: npm run build
|
|
259
|
-
[2025-11-22 02:20:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
260
|
-
[2025-11-22 02:20:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
261
|
-
[2025-11-22 02:20:26] Run: npm run build
|
|
262
|
-
[2025-11-22 02:20:28] 🎯 Post-Increment-Completion Hook Triggered
|
|
263
|
-
[2025-11-22 02:20:28] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
264
|
-
[2025-11-22 02:20:28] Run: npm run build
|
|
265
|
-
[2025-11-22 02:20:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
266
|
-
[2025-11-22 02:20:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
267
|
-
[2025-11-22 02:20:31] Run: npm run build
|
|
268
|
-
[2025-11-22 02:20:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
269
|
-
[2025-11-22 02:20:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
270
|
-
[2025-11-22 02:20:31] Run: npm run build
|
|
271
|
-
[2025-11-22 02:20:33] 🎯 Post-Increment-Completion Hook Triggered
|
|
272
|
-
[2025-11-22 02:20:33] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
273
|
-
[2025-11-22 02:20:33] Run: npm run build
|
|
274
|
-
[2025-11-22 02:20:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
275
|
-
[2025-11-22 02:20:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
276
|
-
[2025-11-22 02:20:36] Run: npm run build
|
|
277
|
-
[2025-11-22 13:23:12] 🎯 Post-Increment-Completion Hook Triggered
|
|
278
|
-
[2025-11-22 13:23:12] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
279
|
-
[2025-11-22 13:23:12] Run: npm run build
|
|
280
|
-
[2025-11-22 13:23:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
281
|
-
[2025-11-22 13:23:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
282
|
-
[2025-11-22 13:23:14] Run: npm run build
|
|
283
|
-
[2025-11-22 13:23:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
284
|
-
[2025-11-22 13:23:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
285
|
-
[2025-11-22 13:23:15] Run: npm run build
|
|
286
|
-
[2025-11-22 13:23:17] 🎯 Post-Increment-Completion Hook Triggered
|
|
287
|
-
[2025-11-22 13:23:17] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
288
|
-
[2025-11-22 13:23:17] Run: npm run build
|
|
289
|
-
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
290
|
-
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
291
|
-
[2025-11-22 13:23:19] Run: npm run build
|
|
292
|
-
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
293
|
-
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
294
|
-
[2025-11-22 13:23:19] Run: npm run build
|
|
295
|
-
[2025-11-22 13:23:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
296
|
-
[2025-11-22 13:23:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
297
|
-
[2025-11-22 13:23:19] Run: npm run build
|
|
298
|
-
[2025-11-22 13:23:20] 🎯 Post-Increment-Completion Hook Triggered
|
|
299
|
-
[2025-11-22 13:23:20] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
300
|
-
[2025-11-22 13:23:20] Run: npm run build
|
|
301
|
-
[2025-11-22 13:27:47] 🎯 Post-Increment-Completion Hook Triggered
|
|
302
|
-
[2025-11-22 13:27:47] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
303
|
-
[2025-11-22 13:27:47] Run: npm run build
|
|
304
|
-
[2025-11-22 13:27:49] 🎯 Post-Increment-Completion Hook Triggered
|
|
305
|
-
[2025-11-22 13:27:49] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
306
|
-
[2025-11-22 13:27:49] Run: npm run build
|
|
307
|
-
[2025-11-22 13:27:50] 🎯 Post-Increment-Completion Hook Triggered
|
|
308
|
-
[2025-11-22 13:27:50] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
309
|
-
[2025-11-22 13:27:50] Run: npm run build
|
|
310
|
-
[2025-11-22 13:27:52] 🎯 Post-Increment-Completion Hook Triggered
|
|
311
|
-
[2025-11-22 13:27:52] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
312
|
-
[2025-11-22 13:27:52] Run: npm run build
|
|
313
|
-
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
314
|
-
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
315
|
-
[2025-11-22 13:27:54] Run: npm run build
|
|
316
|
-
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
317
|
-
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
318
|
-
[2025-11-22 13:27:54] Run: npm run build
|
|
319
|
-
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
320
|
-
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
321
|
-
[2025-11-22 13:27:54] Run: npm run build
|
|
322
|
-
[2025-11-22 13:27:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
323
|
-
[2025-11-22 13:27:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
324
|
-
[2025-11-22 13:27:54] Run: npm run build
|
|
325
|
-
[2025-11-22 14:10:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
326
|
-
[2025-11-22 14:10:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
327
|
-
[2025-11-22 14:10:04] Run: npm run build
|
|
328
|
-
[2025-11-22 14:10:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
329
|
-
[2025-11-22 14:10:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
330
|
-
[2025-11-22 14:10:09] Run: npm run build
|
|
331
|
-
[2025-11-22 14:10:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
332
|
-
[2025-11-22 14:10:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
333
|
-
[2025-11-22 14:10:14] Run: npm run build
|
|
334
|
-
[2025-11-22 14:10:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
335
|
-
[2025-11-22 14:10:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
336
|
-
[2025-11-22 14:10:19] Run: npm run build
|
|
337
|
-
[2025-11-22 14:27:50] 🎯 Post-Increment-Completion Hook Triggered
|
|
338
|
-
[2025-11-22 14:27:50] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
339
|
-
[2025-11-22 14:27:50] Run: npm run build
|
|
340
|
-
[2025-11-22 14:27:55] 🎯 Post-Increment-Completion Hook Triggered
|
|
341
|
-
[2025-11-22 14:27:55] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
342
|
-
[2025-11-22 14:27:55] Run: npm run build
|
|
343
|
-
[2025-11-22 14:28:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
344
|
-
[2025-11-22 14:28:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
345
|
-
[2025-11-22 14:28:00] Run: npm run build
|
|
346
|
-
[2025-11-22 14:28:05] 🎯 Post-Increment-Completion Hook Triggered
|
|
347
|
-
[2025-11-22 14:28:05] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
348
|
-
[2025-11-22 14:28:05] Run: npm run build
|
|
349
|
-
[2025-11-22 14:39:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
350
|
-
[2025-11-22 14:39:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
351
|
-
[2025-11-22 14:39:21] Run: npm run build
|
|
352
|
-
[2025-11-22 14:39:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
353
|
-
[2025-11-22 14:39:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
354
|
-
[2025-11-22 14:39:26] Run: npm run build
|
|
355
|
-
[2025-11-22 14:39:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
356
|
-
[2025-11-22 14:39:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
357
|
-
[2025-11-22 14:39:31] Run: npm run build
|
|
358
|
-
[2025-11-22 14:39:36] 🎯 Post-Increment-Completion Hook Triggered
|
|
359
|
-
[2025-11-22 14:39:36] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
360
|
-
[2025-11-22 14:39:36] Run: npm run build
|
|
361
|
-
[2025-11-22 15:58:48] 🎯 Post-Increment-Completion Hook Triggered
|
|
362
|
-
[2025-11-22 15:58:48] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
363
|
-
[2025-11-22 15:58:48] Run: npm run build
|
|
364
|
-
[2025-11-22 15:58:53] 🎯 Post-Increment-Completion Hook Triggered
|
|
365
|
-
[2025-11-22 15:58:53] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
366
|
-
[2025-11-22 15:58:53] Run: npm run build
|
|
367
|
-
[2025-11-22 15:58:58] 🎯 Post-Increment-Completion Hook Triggered
|
|
368
|
-
[2025-11-22 15:58:58] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
369
|
-
[2025-11-22 15:58:58] Run: npm run build
|
|
370
|
-
[2025-11-22 15:59:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
371
|
-
[2025-11-22 15:59:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
372
|
-
[2025-11-22 15:59:03] Run: npm run build
|
|
373
|
-
[2025-11-22 15:59:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
374
|
-
[2025-11-22 15:59:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
375
|
-
[2025-11-22 15:59:21] Run: npm run build
|
|
376
|
-
[2025-11-22 15:59:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
377
|
-
[2025-11-22 15:59:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
378
|
-
[2025-11-22 15:59:26] Run: npm run build
|
|
379
|
-
[2025-11-22 15:59:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
380
|
-
[2025-11-22 15:59:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
381
|
-
[2025-11-22 15:59:32] Run: npm run build
|
|
382
|
-
[2025-11-22 15:59:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
383
|
-
[2025-11-22 15:59:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
384
|
-
[2025-11-22 15:59:37] Run: npm run build
|
|
385
|
-
[2025-11-22 16:00:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
386
|
-
[2025-11-22 16:00:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
387
|
-
[2025-11-22 16:00:32] Run: npm run build
|
|
388
|
-
[2025-11-22 16:00:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
389
|
-
[2025-11-22 16:00:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
390
|
-
[2025-11-22 16:00:37] Run: npm run build
|
|
391
|
-
[2025-11-22 16:00:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
392
|
-
[2025-11-22 16:00:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
393
|
-
[2025-11-22 16:00:42] Run: npm run build
|
|
394
|
-
[2025-11-22 16:00:47] 🎯 Post-Increment-Completion Hook Triggered
|
|
395
|
-
[2025-11-22 16:00:47] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
396
|
-
[2025-11-22 16:00:47] Run: npm run build
|
|
397
|
-
[2025-11-22 16:01:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
398
|
-
[2025-11-22 16:01:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
399
|
-
[2025-11-22 16:01:04] Run: npm run build
|
|
400
|
-
[2025-11-22 16:01:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
401
|
-
[2025-11-22 16:01:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
402
|
-
[2025-11-22 16:01:09] Run: npm run build
|
|
403
|
-
[2025-11-22 16:01:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
404
|
-
[2025-11-22 16:01:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
405
|
-
[2025-11-22 16:01:14] Run: npm run build
|
|
406
|
-
[2025-11-22 16:01:19] 🎯 Post-Increment-Completion Hook Triggered
|
|
407
|
-
[2025-11-22 16:01:19] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
408
|
-
[2025-11-22 16:01:19] Run: npm run build
|
|
409
|
-
[2025-11-22 16:02:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
410
|
-
[2025-11-22 16:02:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
411
|
-
[2025-11-22 16:02:06] Run: npm run build
|
|
412
|
-
[2025-11-22 16:02:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
413
|
-
[2025-11-22 16:02:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
414
|
-
[2025-11-22 16:02:11] Run: npm run build
|
|
415
|
-
[2025-11-22 16:02:16] 🎯 Post-Increment-Completion Hook Triggered
|
|
416
|
-
[2025-11-22 16:02:16] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
417
|
-
[2025-11-22 16:02:16] Run: npm run build
|
|
418
|
-
[2025-11-22 16:02:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
419
|
-
[2025-11-22 16:02:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
420
|
-
[2025-11-22 16:02:21] Run: npm run build
|
|
421
|
-
[2025-11-22 17:12:35] 🎯 Post-Increment-Completion Hook Triggered
|
|
422
|
-
[2025-11-22 17:12:35] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
423
|
-
[2025-11-22 17:12:35] Run: npm run build
|
|
424
|
-
[2025-11-22 17:12:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
425
|
-
[2025-11-22 17:12:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
426
|
-
[2025-11-22 17:12:37] Run: npm run build
|
|
427
|
-
[2025-11-22 17:12:38] 🎯 Post-Increment-Completion Hook Triggered
|
|
428
|
-
[2025-11-22 17:12:38] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
429
|
-
[2025-11-22 17:12:38] Run: npm run build
|
|
430
|
-
[2025-11-22 17:12:40] 🎯 Post-Increment-Completion Hook Triggered
|
|
431
|
-
[2025-11-22 17:12:40] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
432
|
-
[2025-11-22 17:12:40] Run: npm run build
|
|
433
|
-
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
434
|
-
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
435
|
-
[2025-11-22 17:12:42] Run: npm run build
|
|
436
|
-
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
437
|
-
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
438
|
-
[2025-11-22 17:12:42] Run: npm run build
|
|
439
|
-
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
440
|
-
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
441
|
-
[2025-11-22 17:12:42] Run: npm run build
|
|
442
|
-
[2025-11-22 17:12:42] 🎯 Post-Increment-Completion Hook Triggered
|
|
443
|
-
[2025-11-22 17:12:42] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
444
|
-
[2025-11-22 17:12:43] Run: npm run build
|