From 03f30ad28b282fbb4fa5a6ed6b57d0327218cce0 Mon Sep 17 00:00:00 2001 From: Davor Racic Date: Fri, 4 Jul 2025 14:22:49 +0200 Subject: [PATCH] fix: update YAML library from 'yaml' to 'js-yaml' in resolveExpansionPackCoreAgents for consistency (#295) --- tools/installer/lib/installer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/installer/lib/installer.js b/tools/installer/lib/installer.js index 2b7b97c9..28a54519 100644 --- a/tools/installer/lib/installer.js +++ b/tools/installer/lib/installer.js @@ -1210,7 +1210,7 @@ class Installer { async resolveExpansionPackCoreDependencies(installDir, expansionDotFolder, packId, spinner) { const glob = require('glob'); - const yaml = require('yaml'); + const yaml = require('js-yaml'); const fs = require('fs').promises; // Find all agent files in the expansion pack @@ -1265,7 +1265,7 @@ class Installer { async resolveExpansionPackCoreAgents(installDir, expansionDotFolder, packId, spinner) { const glob = require('glob'); - const yaml = require('yaml'); + const yaml = require('js-yaml'); const fs = require('fs').promises; // Find all team files in the expansion pack