style(installer): wrap long header strings per prettier
This commit is contained in:
parent
411e8c71cd
commit
1e339afe51
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue