0
votes
1answer
55 views

How to use Yeoman with Bourbon rather than Compass?

How would I go about setting up Yeoman + Grunt.js to compile Sass without Compass? I'd like to use thoughtbot's Bourbon rather than Compass. Would I need to create a custom generator for this or is it ...
1
vote
1answer
62 views

Different SASS/Coffeescript Variable Values Based on Build

I am trying to create a build system for a front-end framework that will create different paths in SASS (and possibly Coffeescript) based on where I am deploying to. So for example, I might have an ...
3
votes
1answer
851 views

What is workflow in Yeoman to work with Sass files?

I try to use yeoman but I don't know how to use my own sass files with it. With grunt server Sass files are watched and compiled into .tmp/styles/ But there is no reference to the compiled ...
1
vote
0answers
133 views

Gruntjs: why compiled scss to empty file? using grunt-contrib-sass plugin

I am trying to compile scss file using the grunt-contrib-sass plugin (with grunt v0.4.0). The compiled result is an empty css file. Below are the base.scss, Gruntfile.js and package.json files. ...
2
votes
1answer
642 views

What is the recommended directory structure for Grunt projects

I am setting up a Grunt project for the first time. Is there a recommended directory structure? For example, keep sources under /src, intermediate build artifacts in /stage and final concatenated, ...
0
votes
1answer
189 views

Compiling indivual .scss files with compass command line

Is there a way through the compass command line utility to compile indivually files? The reason I am asking is that I currently have a grunt tasks that runs the compass compile command for the ...
2
votes
1answer
667 views

grunt says no “sass” targets found

I'm trying to set up grunt-contrib-sass so I can use grunt to handle sass-to-css compiling. I installed after scaffolding a basic grunt file with grunt init:makefile. When I ran grunt sass just to ...
2
votes
1answer
536 views

Specify a single scss file in compass config.rb

I working on a deployment process for a HTML5 app. I'm using compass and SCSS to do styling and I have a config.rb in the root of my project dir to configure compass. I have an app.scss file that has ...
5
votes
2answers
3k views

Yeoman: LiveReload vs. Yeoman Watch

I'm trying out Yeoman Server for the first time and see that it offers a native watch tool as a fallback to LiveReload. Here's how the docs explain the fallback: "[Yeoman Server] automatically fires ...