chore(vscode-ide-companion): refactor directory structure

This commit is contained in:
yiliang114
2025-12-08 00:54:26 +08:00
parent e47263f7c9
commit be71976a1f
81 changed files with 409 additions and 1540 deletions

View File

@@ -46,8 +46,8 @@ const cssInjectPlugin = {
let css = await fs.promises.readFile(args.path, 'utf8');
// For ClaudeCodeStyles.css, we need to resolve @import statements
if (args.path.endsWith('ClaudeCodeStyles.css')) {
// For styles.css, we need to resolve @import statements
if (args.path.endsWith('styles.css')) {
// Read all imported CSS files and inline them
const importRegex = /@import\s+'([^']+)';/g;
let match;