mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
fix(ccw): correct template paths for TypeScript build
Fix paths from dist/core/ to src/templates/ since templates are not compiled and remain in src directory. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -100,7 +100,7 @@ function generateFromUnifiedTemplate(data: unknown): string {
|
||||
|
||||
// Read JS content
|
||||
let jsContent = '';
|
||||
const moduleBase = join(__dirname, '../templates/dashboard-js');
|
||||
const moduleBase = join(__dirname, '../../src/templates/dashboard-js');
|
||||
|
||||
if (existsSync(moduleBase)) {
|
||||
jsContent = MODULE_FILES.map(file => {
|
||||
|
||||
Reference in New Issue
Block a user