mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +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
|
// Read JS content
|
||||||
let jsContent = '';
|
let jsContent = '';
|
||||||
const moduleBase = join(__dirname, '../templates/dashboard-js');
|
const moduleBase = join(__dirname, '../../src/templates/dashboard-js');
|
||||||
|
|
||||||
if (existsSync(moduleBase)) {
|
if (existsSync(moduleBase)) {
|
||||||
jsContent = MODULE_FILES.map(file => {
|
jsContent = MODULE_FILES.map(file => {
|
||||||
|
|||||||
Reference in New Issue
Block a user