Cosmetics

pull/5677/head
Mert Sincan 2024-04-29 21:38:45 +01:00
parent 07f1921697
commit ab677831bd
2 changed files with 8 additions and 4 deletions

View File

@ -151,9 +151,13 @@ const createVeturAttributes = (component) => {
};
Object.keys(fileModules).forEach((p) => {
createWebTypes(fileModules[p][p]);
createVeturTags(fileModules[p][p]);
createVeturAttributes(fileModules[p][p]);
const component = fileModules[p][p];
if (component) {
createWebTypes(component);
createVeturTags(component);
createVeturAttributes(component);
}
});
!fs.existsSync(distDir) && fs.mkdirSync(distDir);

View File

@ -8,7 +8,7 @@ export default {
},
content: {
highlightBackground: '{highlight.background}',
highlightBorderColor: '{highlight.color}',
highlightBorderColor: '{highlight.color}'
},
file: {
borderColor: '{surface.200}'