fix: readme updated to indicate move of web-bundles

This commit is contained in:
Brian Madison
2025-06-16 22:26:30 -05:00
parent 1fbeed75ea
commit 7e9574f571
24 changed files with 40 additions and 71884 deletions

View File

@@ -6,8 +6,7 @@ class WebBuilder {
constructor(options = {}) {
this.rootDir = options.rootDir || process.cwd();
this.outputDirs = options.outputDirs || [
path.join(this.rootDir, 'dist'),
path.join(this.rootDir, 'bmad-core', 'web-bundles')
path.join(this.rootDir, 'dist')
];
this.resolver = new DependencyResolver(this.rootDir);
this.templatePath = path.join(this.rootDir, 'bmad-core', 'templates', 'web-agent-startup-instructions-template.md');
@@ -152,7 +151,6 @@ class WebBuilder {
async buildExpansionPack(packName, options = {}) {
const packDir = path.join(this.rootDir, 'expansion-packs', packName);
const outputDirs = [
path.join(packDir, 'web-bundles'),
path.join(this.rootDir, 'dist', 'expansion-packs', packName)
];