style(installer): wrap long header strings per prettier

This commit is contained in:
Alex Verkhovsky 2026-04-30 22:57:26 -07:00
parent 411e8c71cd
commit 1e339afe51
2 changed files with 4 additions and 2 deletions

View File

@ -942,7 +942,8 @@ class Installer {
*/ */
async mergeModuleHelpCatalogs(bmadDir, _agentEntries = []) { async mergeModuleHelpCatalogs(bmadDir, _agentEntries = []) {
const allRows = []; const allRows = [];
const headerRow = 'module,skill,display-name,menu-code,description,action,args,phase,preceded-by,followed-by,required,output-location,outputs'; const headerRow =
'module,skill,display-name,menu-code,description,action,args,phase,preceded-by,followed-by,required,output-location,outputs';
const COLUMN_COUNT = 13; const COLUMN_COUNT = 13;
const PHASE_INDEX = 7; const PHASE_INDEX = 7;

View File

@ -338,7 +338,8 @@ class PluginResolver {
* @returns {string} CSV content * @returns {string} CSV content
*/ */
_buildSynthesizedHelpCsv(moduleName, skillInfos) { _buildSynthesizedHelpCsv(moduleName, skillInfos) {
const header = 'module,skill,display-name,menu-code,description,action,args,phase,preceded-by,followed-by,required,output-location,outputs'; const header =
'module,skill,display-name,menu-code,description,action,args,phase,preceded-by,followed-by,required,output-location,outputs';
const rows = [header]; const rows = [header];
for (const info of skillInfos) { for (const info of skillInfos) {