fix: css in sidebar and vscode css variables for vscode

This commit is contained in:
Ralph Khreish
2025-07-31 14:28:28 +03:00
parent e04a849c56
commit 8d9d779e0c
6 changed files with 60 additions and 36 deletions

View File

@@ -30,13 +30,7 @@ try {
fs.ensureDirSync(targetDistDir);
// Only copy the files we need (exclude .map files)
const filesToCopy = [
'extension.js',
'index.js',
'index.css',
'sidebar.js',
'sidebar.css'
];
const filesToCopy = ['extension.js', 'index.js', 'index.css', 'sidebar.js'];
for (const file of filesToCopy) {
const srcFile = path.resolve(distDir, file);
const destFile = path.resolve(targetDistDir, file);