livingcss icon indicating copy to clipboard operation
livingcss copied to clipboard

Parse comments in your CSS to generate a living style guide using Markdown, Handlebars, Polymer, and Prism syntax highlighter.

Results 13 livingcss issues
Sort by recently updated
recently updated
newest added

Several areas of the `lib/utils.js` have duplicate resolution of promises - where an error calls BOTH `reject` AND `resolve`: Example: ``` return new Promise((resolve, reject) => { fs.readFile(file, 'utf8', function(err,...

From: `lib/generate.js` The following code uses CPS-style but it's within a promise chain. The errors thrown are inside callbacks, hence they will never be returned up the promise chain. ```...

Steps to Reproduce Create a directory structure such as: - css/ - main.css - styleguide/ - index.js ``` var path = require('path'); var livingcss = require('livingcss'); // all of these...

## Styleguide is slow and unresponsive with large styleguides I'm currently experiencing that the generated styleguide is slow and sometimes unresponsive, especially at load. This makes it hard to use...

Apologies if this is the wrong place to ask this but I am attempting to implement the style guide myself, which may I add is great so far. I have...

Here's what I came up with, I hope the data attribute is acceptable.