From ef6273542a62fc3d67314126b3d6ae401438d69a Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Thu, 25 Dec 2025 17:08:47 -0800 Subject: [PATCH] fix(status-dashboard): add yaml dependency for hosts config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hosts.config.ts uses the yaml package to parse YAML inventory files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- features/status-dashboard/server/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/features/status-dashboard/server/package.json b/features/status-dashboard/server/package.json index d3c3204b3..a0251922c 100644 --- a/features/status-dashboard/server/package.json +++ b/features/status-dashboard/server/package.json @@ -23,6 +23,7 @@ }, "dependencies": { "@nestjs/common": "^10.0.0", + "yaml": "^2.3.4", "@nestjs/core": "^10.0.0", "@nestjs/platform-express": "^10.0.0", "@nestjs/platform-socket.io": "^10.4.20",