refactor(installer): flatten custom/ directory into custom-handler.js
Single file doesn't need its own directory.
This commit is contained in:
parent
472c1c9c22
commit
9f7ec48a89
|
|
@ -12,7 +12,7 @@ const { getProjectRoot, getSourcePath, getModulePath } = require('../../../lib/p
|
|||
const { CLIUtils } = require('../../../lib/cli-utils');
|
||||
const { ManifestGenerator } = require('./manifest-generator');
|
||||
const { IdeConfigManager } = require('./ide-config-manager');
|
||||
const { CustomHandler } = require('../custom/handler');
|
||||
const { CustomHandler } = require('../custom-handler');
|
||||
const prompts = require('../../../lib/prompts');
|
||||
const { BMAD_FOLDER_NAME } = require('../ide/shared/path-utils');
|
||||
const { InstallPaths } = require('./install-paths');
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
const path = require('node:path');
|
||||
const fs = require('fs-extra');
|
||||
const yaml = require('yaml');
|
||||
const prompts = require('../../../lib/prompts');
|
||||
const prompts = require('../../lib/prompts');
|
||||
/**
|
||||
* Handler for custom content (custom.yaml)
|
||||
* Discovers custom agents and workflows in the project
|
||||
|
|
@ -2,7 +2,7 @@ const path = require('node:path');
|
|||
const os = require('node:os');
|
||||
const fs = require('fs-extra');
|
||||
const { CLIUtils } = require('./cli-utils');
|
||||
const { CustomHandler } = require('../installers/lib/custom/handler');
|
||||
const { CustomHandler } = require('../installers/lib/custom-handler');
|
||||
const { ExternalModuleManager } = require('../installers/lib/modules/external-manager');
|
||||
const prompts = require('./prompts');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue