I have implemented grunt-styleguide
with the template set as styledocco
to automatically generate CSS style guides.
Although the task runs successfully, the output files generated by styledocco
are missing applied CSS for demo elements.
This is my current grunt configuration for styleguide:
styleguide: {
dist: {
options: {
framework: {
name: "styledocco"
},
name: "FE KICKSTARTER V1.o"
},
files: {
"assets/css/styleguide": "assets/css/**/*.less"
}
}
}
The results of my implementation are not as expected:
The image, test text, and button above should display styles that are not applying. I have reviewed my configurations and everything seems to be in order, but I am unsure what I am missing.
What steps should I take to resolve this issue?