frontend-united / generator-drupal-theme

A yeoman generator to start the foundation of any Drupal theme.
38 stars 15 forks source link

Problem with Gruntfile.js paths variable #16

Closed adrianopulz closed 9 years ago

adrianopulz commented 9 years ago

In this line: var paths = require('compass-options').paths(); the paths var get a full path, like sites/all/themes/theme_name/sass but need use de relative path like sass to "grunt watch" work. To fix this problem, I changed this line to: var paths = require('compass-options').dirs();