Cosmetics
parent
07f1921697
commit
ab677831bd
|
@ -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);
|
||||
|
|
|
@ -8,7 +8,7 @@ export default {
|
|||
},
|
||||
content: {
|
||||
highlightBackground: '{highlight.background}',
|
||||
highlightBorderColor: '{highlight.color}',
|
||||
highlightBorderColor: '{highlight.color}'
|
||||
},
|
||||
file: {
|
||||
borderColor: '{surface.200}'
|
||||
|
|
Loading…
Reference in New Issue