Grunt takes a quite long to compile the css file, I am not sure if this is normal but regular compass watch takes around 5 seconds.
So the question is if there is any way to speed up the compilation time with Grunt or is it better to just stick…
I was running grunt-contrib-compass@0.6.0 and it was aborting with this error:
node_modules/grunt-contrib-compass/node_modules/tmp/lib/tmp.js:261
throw err;
^
Error: socket hang up
at createHangUpError (http.js:1476:15)
at…
I am trying to run grunt-contrib-compass, but running into this error:
Warning: Couldn't find the `compass` binary. Make sure it's installed and in your $PATH Use --force to continue.
I've run:
sudo gem install compass
sudo gem install sass
sudo…
I'm using grunt-contrib-compass to process my SCSS files into a single CSS file. Basically, compass considers all the SCSS files matching app/styles/**/*.scss and compile them into .tmp/styles/main.css.
I would like to split this behavior into…
I have successfully installed the "font-awesome-sass" ruby-gem and included it via "require"-property inside the compass gunt-config and via "import"-rule in my scss. So the font-awesome scss gets compiled into my output-css file, this works so…
I have a compass task running on grunt which produces a compiled base.css file and also a number of page specific css files. The base.scss @imports a _settings.scss partial which dictates some global setup for all files.
compass: {
theme: {
…
I get the following error when using grunt compass:
"You must compile individual stylesheets from the project directory."
I tried it with grunt 3 different ways. More below.
My folder structure:
test \
Gruntfile.js
package.json
\…
I am working on my website and I want to use Susy as well as Compass. I am using Grunt too. When I run my grunt task I get this error:
Denniss-MacBook-Pro:portfolio dennis$ grunt --trace
Running "compass:dev" (compass) task
Gem::LoadError on line…
I'm running Grunt to compile some SCSS and whenever I include a border radius
@include border-radius(50%);
it throws this error
SystemStackError on line ["160"] of C: stack level too deep
I'm running npm@3.10.8 and grunt-contrib-compass@1.1.1
Does…
When I make a linear gradient on ColorZilla, I take the scss code that looks like this:
@include background-image(linear-gradient(top, #659adc 0%,#004ca2 100%));
which generates this css:
background-image: -webkit-gradient(linear, 50% 0%, 50%…
grunt build is failing by yielding following error:
error app/styles/directive.scss (Line 369 of
bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_variables.scss:
Invalid CSS after "... floor(math": expected ")",…
I was handed a big grunt build process, and this seems to be the error coming :
Warning: spawn E2BIG Use --force to continue
I found what the error is here : https://github.com/feross/standard/issues/40 and here :…
I am using compass with gulp.
I am generating sprites and have the following mixin:
$sprite-icons: sprite-map("sprite-icons/*.png");
$sprite-icons-url: sprite-url($sprite-icons);
@mixin sprite-icon($name) {
background-image: $sprite-icons-url;
…
I've googled and read webpages till my eyes bled, but still can't find the answer. So please excuse me if this has been answered already.
My compass project grunt "compiles" just fine for production and development "modes". The souremaps work…
I have an AngularJS project that I'm attempting to build. Everything works, except that the fonts in the vendor.css are not correct.
Example: url(../fonts/glyphicons-halflings-regular.woff)
Obviously this causes a 404:
Request
…