0

It does not seem to create the relevant directories, as well as generate the styleguide.

I have attached relevant imagery, can anyone see a mistake?

It runs the task in Grunt with no errors, but nothing is generated or outputted

Directory Structure

Grunt Shell Task

Grunt Task Register

PI.
  • 1,658
  • 4
  • 19
  • 33

2 Answers2

0

You can try to use the stdout option for the grunt-shell task to see a possible error output of kss-node.

fbrandel
  • 1,605
  • 3
  • 17
  • 18
0

I'm using grunt-styleguide which works fine with both StyleDocco and KSS.

Here's my configuration with the default yeoman webapp generator :

styleguide: {
  options: {
    template: {
      src: 'app/styleguide-template'
    },
    framework: {
      name: 'kss'
    }
  },
  all: {
    files: [{
      '.tmp/styleguide': 'app/styles/main.scss'
    }]
  }
},
griable
  • 892
  • 9
  • 9