Tagged Questions
0
votes
0answers
2 views
AssignProcessToJobObject on Yeoman / Grunt and Compass
I've been trying to setup yeoman for a new project but when I start grunt compass I get:
$>grunt compass
Running "compass:dist" (compass) task
AssignProcessToJobObject: (5) Access denied.
I've ...
0
votes
1answer
26 views
Compass sprite, Yeoman, Grunt & image reference don`t combine well together
Yo.
I got a simple spriteSet in my webapp:
@import "icons/*.png";
@include all-icons-sprites;
Grunt or Compass generating the sprited image without any problems, inside my images folder, that was ...
0
votes
1answer
58 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
121 views
Grunt task output then calling grunt-notify
Grunt notify: https://github.com/dylang/grunt-notify is great. However, it seems a bit limited. As far as I can tell all my messages need to be pre-generated. So the first question is how can I ...
3
votes
1answer
853 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 ...
3
votes
1answer
208 views
Inlining Bootstrap SASS images with Compass
A bit about environment: we do UI build automation with Grunt, we do use Twitter Bower for managing third-party dependencies, as we don't want to keep third-party code in our repository, we use ...
2
votes
1answer
648 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, ...
4
votes
1answer
431 views
Configuring Yeoman for building non-root projects
I might be missing something obvious, but i really can't figure it out by going over the docs and issues on GitHub -
I'm developing an AngularJS project that will be deployed on a specific ...
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
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 ...