You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var path = require('path');
var livingcss = require('livingcss');
// all of these fail:
livingcss('css/buttons.css', 'styleguide');
livingcss(path.join(__dirname, 'css/buttons.css'), 'styleguide');
livingcss(path.join(__dirname, 'css/buttons.css'), path.join(__dirname, 'styleguide'));
livingcss('css/buttons.css', path.join(__dirname, 'styleguide'));
Actual Behavior
Error: ENOENT: no such file or directory, open '../css/buttons.css'
Expected Behavior
Styleguide generated in specified directory
Stylesheets linked (if flag enabled)
The text was updated successfully, but these errors were encountered:
Steps to Reproduce
Create a directory structure such as:
Actual Behavior
Expected Behavior
The text was updated successfully, but these errors were encountered: