Cosmetics
parent
07f1921697
commit
ab677831bd
|
@ -151,9 +151,13 @@ const createVeturAttributes = (component) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
Object.keys(fileModules).forEach((p) => {
|
Object.keys(fileModules).forEach((p) => {
|
||||||
createWebTypes(fileModules[p][p]);
|
const component = fileModules[p][p];
|
||||||
createVeturTags(fileModules[p][p]);
|
|
||||||
createVeturAttributes(fileModules[p][p]);
|
if (component) {
|
||||||
|
createWebTypes(component);
|
||||||
|
createVeturTags(component);
|
||||||
|
createVeturAttributes(component);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
!fs.existsSync(distDir) && fs.mkdirSync(distDir);
|
!fs.existsSync(distDir) && fs.mkdirSync(distDir);
|
||||||
|
|
|
@ -8,7 +8,7 @@ export default {
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
highlightBackground: '{highlight.background}',
|
highlightBackground: '{highlight.background}',
|
||||||
highlightBorderColor: '{highlight.color}',
|
highlightBorderColor: '{highlight.color}'
|
||||||
},
|
},
|
||||||
file: {
|
file: {
|
||||||
borderColor: '{surface.200}'
|
borderColor: '{surface.200}'
|
||||||
|
|
Loading…
Reference in New Issue